<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="ProgId" content="Word.Document">
<meta name="Generator" content="Microsoft Word 9">
<meta name="Originator" content="Microsoft Word 9">
<meta name="Author" content="Pankaj Jaiswal">
<meta name="GENERATOR" content="Mozilla/4.77 [en] (Windows NT 5.0; U) [Netscape]">
<title>Gramene mutant database submission form</title>
<link rel=File-List href="./mutantform0.1_files/filelist.xml">
<link rel=Edit-Time-Data href="./mutantform0.1_files/editdata.mso">
<!--[if !mso]>
<style>
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style>
<![endif]-->
<!--[if gte mso 9]><xml>
<o:DocumentProperties>
<o:Author>jn66</o:Author>
<o:Template>Normal</o:Template>
<o:LastAuthor>jn66</o:LastAuthor>
<o:Revision>2</o:Revision>
<o:TotalTime>11</o:TotalTime>
<o:LastPrinted>2001-07-11T14:09:00Z</o:LastPrinted>
<o:Created>2001-07-12T20:47:00Z</o:Created>
<o:LastSaved>2001-07-12T20:47:00Z</o:LastSaved>
<o:Pages>3</o:Pages>
<o:Words>924</o:Words>
<o:Characters>5269</o:Characters>
<o:Company>Cornell University</o:Company>
<o:Lines>43</o:Lines>
<o:Paragraphs>10</o:Paragraphs>
<o:CharactersWithSpaces>6470</o:CharactersWithSpaces>
<o:Version>9.2720</o:Version>
</o:DocumentProperties>
</xml><![endif]-->
<style>
<!--
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {mso-style-parent:"";
        margin:0in;
        margin-bottom:.0001pt;
        mso-pagination:widow-orphan;
        font-size:12.0pt;
        font-family:"Times New Roman";
        mso-fareast-font-family:"Times New Roman";
        color:black;}
a:link, span.MsoHyperlink
        {color:#0000EE;
        text-decoration:underline;
        text-underline:single;}
a:visited, span.MsoHyperlinkFollowed
        {color:#551A8B;
        text-decoration:underline;
        text-underline:single;}
p
        {margin-right:0in;
        mso-margin-top-alt:auto;
        mso-margin-bottom-alt:auto;
        margin-left:0in;
        mso-pagination:widow-orphan;
        font-size:12.0pt;
        font-family:"Times New Roman";
        mso-fareast-font-family:"Times New Roman";
        color:black;}
@page Section1
        {size:8.5in 11.0in;
        margin:1.0in 1.25in 1.0in 1.25in;
        mso-header-margin:.5in;
        mso-footer-margin:.5in;
        mso-paper-source:0;}
div.Section1
        {page:Section1;}
-->
</style>
<!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1027"/>
</xml><![endif]-->
<!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1"/>
</o:shapelayout></xml><![endif]-->
</head>
<body bgcolor="#FFFFDB" link="#0000EE" vlink="#551A8B" alink="#FF0000" lang="EN-US" style="tab-interval:.5in">
<div class=Section1>
<br><!--webbot BOT="GeneratedScript" PREVIEW=" " startspan --><script Language="JavaScript"><!--
function FrontPage_Form1_Validator(theForm)
{
if (theForm.fname.value == "")
{
alert("Please enter a value for the \"First name\" field.");
theForm.fname.focus();
return (false);
}
if (theForm.fname.value.length > 35)
{
alert("Please enter at most 35 characters in the \"First name\" field.");
theForm.fname.focus();
return (false);
}
if (theForm.lname.value == "")
{
alert("Please enter a value for the \"Last Name\" field.");
theForm.lname.focus();
return (false);
}
if (theForm.lname.value.length > 35)
{
alert("Please enter at most 35 characters in the \"Last Name\" field.");
theForm.lname.focus();
return (false);
}
if (theForm.a_type.selectedIndex < 0)
{
alert("Please select one of the \"Affiliation type\" options.");
theForm.a_type.focus();
return (false);
}
if (theForm.a_type.selectedIndex == 0)
{
alert("The first \"Affiliation type\" option is not a valid selection. Please choose one of the other options.");
theForm.a_type.focus();
return (false);
}
var checkOK = "0123456789-.,";
var checkStr = theForm.zip1.value;
var allValid = true;
var decPoints = 0;
var allNum = "";
for (i = 0; i < checkStr.length; i++)
{
ch = checkStr.charAt(i);
for (j = 0; j < checkOK.length; j++)
if (ch == checkOK.charAt(j))
break;
if (j == checkOK.length)
{
allValid = false;
break;
}
if (ch == ".")
{
allNum += ".";
decPoints++;
}
else if (ch != ",")
allNum += ch;
}
if (!allValid)
{
alert("Please enter only digit characters in the \"zip1\" field.");
theForm.zip1.focus();
return (false);
}
if (decPoints > 1)
{
alert("Please enter a valid number in the \"zip1\" field.");
theForm.zip1.focus();
return (false);
}
var checkOK = "0123456789-.,";
var checkStr = theForm.zip2.value;
var allValid = true;
var decPoints = 0;
var allNum = "";
for (i = 0; i < checkStr.length; i++)
{
ch = checkStr.charAt(i);
for (j = 0; j < checkOK.length; j++)
if (ch == checkOK.charAt(j))
break;
if (j == checkOK.length)
{
allValid = false;
break;
}
if (ch == ".")
{
allNum += ".";
decPoints++;
}
else if (ch != ",")
allNum += ch;
}
if (!allValid)
{
alert("Please enter only digit characters in the \"zip2\" field.");
theForm.zip2.focus();
return (false);
}
if (decPoints > 1)
{
alert("Please enter a valid number in the \"zip2\" field.");
theForm.zip2.focus();
return (false);
}
if (theForm.email.value == "")
{
alert("Please enter a value for the \"E-Mail Address\" field.");
theForm.email.focus();
return (false);
}
if (theForm.email.value.length > 35)
{
alert("Please enter at most 35 characters in the \"E-Mail Address\" field.");
theForm.email.focus();
return (false);
}
//--></script>
<!--webbot BOT="GeneratedScript" endspan -->
<br><form>
<p class="MsoNormal"><span style='display:none;mso-hide:all'><input TYPE="hidden" NAME="email_required" VALUE="You cannot leave the field (email) empty."><input TYPE="hidden" NAME="fname_required" VALUE="You cannot leave the field (fname) empty."><input TYPE="hidden" NAME="lname_required" VALUE="You cannot leave the field (lname) empty."><input TYPE="hidden" NAME="filed_required" VALUE="You must fill the required fields"></span>
<br>
<center><table BORDER CELLSPACING=6 CELLPADDING=0 WIDTH="81%" style="width:81.0%;
mso-cellspacing:4.5pt;mso-padding-alt:4.5pt 4.5pt 4.5pt 4.5pt" >
<tr>
<td style="background:#FFCCCC;padding:4.5pt 4.5pt 4.5pt 4.5pt">
<center><span
style='font-size:18.0pt;font-family:Arial;color:#3333FF'><b>Rice
Mutant Database Submission Form</b></span></center>
</td>
</tr>
</table></center>
Contributor's information <o:p></o:p>
<br>
<br>
<table BORDER CELLPADDING=0 COLS=2 WIDTH="100%" style="width:100.0%;mso-cellspacing:
1.5pt;mso-padding-alt:0in 0in 0in 0in" >
<tr>
<td WIDTH="10%" style="width:10.0%;padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>First name</span></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt;font-family:Arial'><select NAME="Title"><option VALUE="Dr.">Dr. <option SELECTED VALUE="Prof.">Prof <option VALUE="Mr.">Mr. <option VALUE="Ms.">Ms. </select><!--webbot bot="Validation" s-display-name="First name" b-value-required="TRUE" i-maximum-length="35" --><input TYPE="text" MAXLENGTH="35" SIZE="35" NAME="fname" VALUE=" ">
Middle initials </span><input TYPE="text" MAXLENGTH="35" SIZE="4" NAME="minit"></div>
</td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Last name</span></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><!--webbot bot="Validation" s-display-name="Last name" b-value-required="TRUE" i-maximum-length="35" --><input TYPE="text" MAXLENGTH="35" SIZE="35" NAME="fname" VALUE=""></div>
</td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Lab head's name</span></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><!--webbot bot="Validation" s-display-name="Last name" b-value-required="TRUE" i-maximum-length="35" --><input TYPE="text" MAXLENGTH="35" SIZE="35" NAME="fname" VALUE=""></div>
</td>
</tr>
<tr>
<td><span style='font-size:10.0pt'>Institute/Organization</span></td>
<td><input TYPE="text" MAXLENGTH="50" SIZE="50" NAME="Univ/Org" VALUE=" "
B-Value-Required=TRUE></td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Address-1</span></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><input TYPE="text" MAXLENGTH="60" SIZE="60" NAME="synonym"></div>
</td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Address-2</span></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><input TYPE="text" MAXLENGTH="60" SIZE="60" NAME="synonym"></div>
</td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Telephone</span><o:p></o:p></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><input TYPE="text" MAXLENGTH="20" SIZE="20"
display-name=Telephone><span style='font-size:10.0pt'>
Fax </span><input TYPE="text" MAXLENGTH="20" SIZE="20" NAME="fax"></div>
</td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>E mail</span></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><!--webbot bot="Validation" s-display-name="E-Mail Address" b-value-required="TRUE" i-maximum-length="35" --><input TYPE="text" MAXLENGTH="35" SIZE="35" NAME="email"></div>
</td>
</tr>
</table>
<p><span style='color:#000099'><b>MUTANT INFORMATION</b></span>
<br>
<table BORDER CELLPADDING=0 WIDTH="100%" style="width:100.0%;mso-cellspacing:
1.5pt;mso-padding-alt:0in 0in 0in 0in" >
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt;font-family:Arial'>Name</span></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><!--webbot bot="Validation" s-display-name="First name" b-value-required="TRUE" i-maximum-length="35" --><input TYPE="text" MAXLENGTH="35" SIZE="35" NAME="fname" VALUE=" "></div>
</td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Gramene ID</span></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><input TYPE="text" MAXLENGTH="9" SIZE="9" NAME="fname"><span
style='font-size:10.0pt'>(if
known)</span></div>
</td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt;font-family:Arial'>Description</span>
<br><span style='font-size:10.0pt'>(up to 400 characters)</span>
<br><span style='font-size:10.0pt;font-family:Arial'> Evidence <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4 </select></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt"><textarea ROWS="2" COLS="60" NAME="description"></textarea></td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Synonym (if known)</span></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><input TYPE="text" MAXLENGTH="60" SIZE="60" NAME="synonym"></div>
</td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Key words separated
by (;)</span>
<br><span style='font-size:10.0pt'>( up to 6)</span></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><input TYPE="text" MAXLENGTH="60" SIZE="60" NAME="fname"></div>
</td>
</tr>
<tr>
<td><span style='font-size:10.0pt;font-family:Arial'>Mutagen</span>
<br><span style='font-size:10.0pt;font-family:Arial'> Evidence <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4 </select></td>
<td>
<div class="MsoNormal"><span style='font-size:10.0pt;font-family:Arial'>Mutagen
type<S-Display-Name="Affiliation type"></span>
<br><span style='font-size:10.0pt;font-family:Arial'> Spontaneous</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'> Induced</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"></div>
<span style='font-size:10.0pt'> Chemicals <S-Display-Name="Affiliation type"><select NAME="a_type"><option SELECTED VALUE="1">---<option SELECTED VALUE="1">5-bromouracil
(5-BU)<option VALUE="Corporate">2-aminopurine (2-AP)<option VALUE="Corporate">Ethyl
methanesulfonate (EMS)<option VALUE="Corporate">Ethyleneimine (EI)<option VALUE="Government">Nitrosoguanidine
(NG)<option VALUE="Government">Hyfroxylamine (HA)<option VALUE="Others">HydrazineBisulfite
ions<option VALUE="Government">Nitrous acid (NA)<option VALUE="Government">Proflavin<option VALUE="Academic">Acridine
orange<option VALUE="Government">ICR-191<option VALUE="Corporate">Aflatoxin
B1 (AFB1)<option VALUE="Corporate">Benzo(a) pyrene<option VALUE="Corporate">N-methyl-N-nitrosourea
(MNU)</select>
<br><span style='font-size:10.0pt'> Physical/Radiation<S-Display-Name="Affiliation type"><select NAME="a_type"><option SELECTED VALUE="1">--- <option VALUE="Corporate">Ultraviolet(UV)<option VALUE="Corporate">X-rays<option VALUE="Government">g-rays<option VALUE="Government">
Cosmic rays<option VALUE="Others">Electron (b-particle)<option VALUE="Government">Positron
(positive b-particle)<option VALUE="Government">Proton (nucleus of common
isotope of hydrogen)<option VALUE="Academic">Deuteron (nucleus of heavy
isotope of hydrogen)<option VALUE="Government">a (nucleus of helium)<option VALUE="Corporate">Neutron</select>
<br><span style='font-size:10.0pt'> Molecular biological
methods<S-Display-Name="Affiliation type"><select NAME="a_type"><option SELECTED VALUE="1">--- <option VALUE="Corporate">BAL
31 (Digestion)<option VALUE="Corporate">Exonuclease III <option VALUE="Government">Linker-scanning
mutagenesis<option VALUE="Government"> Cassette mutagenesis<option VALUE="Others">Misincorporation
mutagenesis<option VALUE="Government">Spiked Oligonucleotide Primers<option VALUE="Government">Alanine-scanning
mutagenesis<option VALUE="Academic">Conventional site-directed mutagenesis<option VALUE="Government">PCR
site-directed mutagenesis<option VALUE="Corporate">Retrotransposon</select>
<p><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>
<tr>
<td><span style='font-size:10.0pt'>Germplasm</span>
<br><span style='font-size:10.0pt;font-family:Arial'> Evidence <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4 </select></td>
<td>
<div class="MsoNormal"><span style='font-size:10.0pt'>Accession No.<input TYPE="text" MAXLENGTH="30" SIZE="20" NAME="cM position">
(if any) Ref. Germplasm
Bank <S-Display-Name="Affiliation type"></span><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">IRRI<option VALUE="Government">USDA-GRIN<option VALUE="Others">Japan-MAFF<option VALUE="Government">Korea<option VALUE="Government">China<option VALUE="Academic">India<option VALUE="Government">Others</select>
<br><span style='font-size:10.0pt'>Related wild type <input TYPE="text" MAXLENGTH="30" SIZE="20" NAME="cM position">
<br><span style='font-size:10.0pt'>Genus<input TYPE="text" MAXLENGTH="30" SIZE="20" NAME="cM position">
<br><span style='font-size:10.0pt'>Species <S-Display-Name="Affiliation type"><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Corporate">Oryza
sativa L.<option VALUE="Corporate">Oryza glaberrima<option VALUE="Government">Oryza
rufipogon Griff.<option VALUE="Government">Oryza barthii A. Chev.<option VALUE="Others">Oryza
breviligulate A. Chev.<option VALUE="Government">Oryza australeinsis Domin<option VALUE="Government">Oryza
eichingeri A. Peter<option VALUE="Academic">Oryza punctata katschy ex Steud.<option VALUE="Government">Oryza
officinalis Wall.<option VALUE="Corporate">Oryza minuta Persl.<option VALUE="Corporate">Oryza
latifolia Desv.<option VALUE="Corporate">Oryza alta Swallen<option VALUE="Corporate">Oryza
grandiglumis Prod.<option VALUE="Corporate">Oryza ridleyi Hook.<option VALUE="Corporate">Oryza
longiglumis Jansen.<option VALUE="Corporate">Oryza brachyantha A. Chev.<option VALUE="Corporate">Oryza
meyeriana Baill.<option VALUE="Corporate">Oryza schlechteri Pilger</select>
<br><span style='font-size:10.0pt'>Sub-species <S-Display-Name="Affiliation type"></span><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Indica
(Sheng)<option VALUE="Government">Japonica (Keng)<option VALUE="Government">Intermediate
(Hybrids)</select></div>
<span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Plant growth stage</span><o:p></o:p>
<br><span style='font-size:10.0pt;font-family:Arial'> Evidence <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4 </select></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt"><option VALUE="Government"><S-Display-Name="Affiliation type"><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Germination<option VALUE="Government">Seedling<option SELECTED VALUE="Others">Tillering<option VALUE="Government">Stem
elongation<option VALUE="Government">Booting<option VALUE="Academic">Heading<option VALUE="Government">Milk
stage<option VALUE="Corporate">Dough stage<option VALUE="Government">Mature
grain<option VALUE="Government">Other</select>
<br><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>
<tr>
<td VALIGN=TOP WIDTH="10%" style="width:10.0%;padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt;font-family:Arial'><b>Agronomic
trait</b></span>
<br><span style='font-size:10.0pt;font-family:Arial'> Evidence <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4 </select></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><![if !supportEmptyParas]><![endif]><o:p></o:p></div>
</td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt;font-family:Arial'>Yield </span></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'> Yield <S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'>Grain yield</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Biomass yield</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<p><span style='font-size:10.0pt'> Yield components and related traits<S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'>Panicle number </span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Grain number </span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Grain weight </span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Spilelets per panicle </span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>Seed
set percentage</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'> Leaf
senescence<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Late
and slow<option VALUE="Government">Intermediate<option VALUE="Corporate">Early
and fast</select><span style='font-size:10.0pt;font-family:Arial'>
Panicle threshability<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Difficult<option VALUE="Others">Moderately
difficult<option VALUE="Government">Intermediate<option VALUE="Government">Loose<option VALUE="Corporate">Easy</select><span style='font-size:10.0pt;font-family:Arial'>
Panicle exsertion<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Well
exserted<option VALUE="Others">Moderately well exserted<option VALUE="Government">Just
exserted<option VALUE="Government">Partly exserted<option VALUE="Corporate">Enclosed</select><span style='font-size:10.0pt;font-family:Arial'>Tillering
ability (Tiller number)<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Very
high<option VALUE="Government">Good<option VALUE="Others">Medium<option VALUE="Government">Low<option VALUE="Government">Very
low</select><span style='font-size:10.0pt;font-family:Arial'>Phenotypic
acceptability<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Excellent<option VALUE="Others">Good<option VALUE="Government">Fair<option VALUE="Government">Poor<option VALUE="Corporate">Unacceptable</select>
<br><span style='font-size:10.0pt;font-family:Arial'>Lodging incidence</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br> </div>
<span style='font-size:10.0pt;font-family:Arial'> If others is the
option please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Grain quality</span><o:p></o:p></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt"><span style='font-size:10.0pt;font-family:Arial'>
Endosperm type<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Non
glutinous<option VALUE="Government">Glutinous<option VALUE="Others">Indeterminate</select><span style='font-size:10.0pt;font-family:Arial'>
Chalkiness of endosperm<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">None<option VALUE="Government">Small<option VALUE="Government">Medium<option VALUE="Corporate">Large</select><span style='font-size:10.0pt;font-family:Arial'>
Brown rice length<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Extra
long<option VALUE="Others">Long<option VALUE="Government">Medium<option VALUE="Government">Short</select><span style='font-size:10.0pt;font-family:Arial'>
Brown rice shape<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Slender<option VALUE="Others">Medium<option VALUE="Government">Bold<option VALUE="Corporate">Round</select><span style='font-size:10.0pt;font-family:Arial'>
Brown rice protein</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'> Scent (aroma)<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Nonscented<option VALUE="Government">Lightly
scented<option VALUE="Government">Scented</select><span style='font-size:10.0pt;font-family:Arial'>Amylose
content</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Alkali digestion<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Low<option VALUE="Others">Intermediate<option VALUE="Government">High</select><span style='font-size:10.0pt;font-family:Arial'>
Gel consistency<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Soft<option VALUE="Government">Medium<option VALUE="Government">Hard</select>
<br><span style='font-size:10.0pt;font-family:Arial'> Gelatinization
temperature<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">High<option VALUE="Government">Intermediate<option VALUE="Others">Low</select><span style='font-size:10.0pt;font-family:Arial'>
Grain elongation</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Grain moisture</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Grain shattering</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'> Head
rice </span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Milled rice</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Brown rice protein</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<p><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Biotic stress related
traits</span></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'> Animal
damage related <S-Display-Name="Affiliation type"></select>
<div class="MsoNormal"><span style='font-size:10.0pt'>
1) Insect <S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'> Brown planthopper <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Green leafhopper<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
White-backed planthopper<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Rice delphacid<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select>
<br><span style='font-size:10.0pt;font-family:Arial'> Stem borers<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Leaf-folder<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Gall midge<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Caseworm<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Leaf-roller<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select>
<br><span style='font-size:10.0pt;font-family:Arial'> Rice whorl
maggot<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Rice bug<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Thrips<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Zigzag leafhopper <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select>
<br><span style='font-size:10.0pt;font-family:Arial'> Armyworm <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Rice bug<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Cutworm<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Rice whorl maggot <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Sogatodes<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Rice hispa<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Rice skipper<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Stink bug<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select>
<br><span style='font-size:10.0pt'> 2) Nematode <S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'> Ufra<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select>
<br><span style='font-size:10.0pt;font-family:Arial'>
3) Rat</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'>
4) Bird</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"></div>
<span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology">
<p><span style='font-size:10.0pt'> Microbe damage related (Disease) <S-Display-Name="Affiliation type"></select>
<div class="MsoNormal"><span style='font-size:10.0pt'>
1) Bacterial disease <S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'>
Bacterial blight<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Seedling blight<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Bacterial leaf streak<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Sheath blight<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select>
<br><span style='font-size:10.0pt'> 2) Fungal disease <S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'> Bakanae
disease <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Leaf blast<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Panicle blast<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Grain discoloration<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Leaf scald<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Sheath rot<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Stem rot<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
False smut<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select>
<br><span style='font-size:10.0pt;font-family:Arial'>
Kernet smut<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Brown spot<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Narrow brown leaf spot<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Udbatta disease<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select>
<br><span style='font-size:10.0pt'> 3) Mycoplasma-like
organism <S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'>
Yellow dwarf<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select>
<br><span style='font-size:10.0pt'> 4) Viral disease <S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'>
Black streak dwarf virus<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Rice grassy stunt 1 disease<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Rice grassy stunt 2 disease<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Rice hoja blanca<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Rice tungro disease<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Rice ragged stunt disease<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Rice yellow mottle <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select></div>
<span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></div>
<span style='font-size:10.0pt'> Weed related <S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'> Broad leaved
weed</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Grass weed</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Parasitic weed</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Sedge weed</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Resistance to abiotic
stress</span><o:p></o:p></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt"><S-Display-Name="Affiliation type">
<br><span style='font-size:10.0pt'> Temperature stress related
trait <S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'>
Cold tolerance</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Heat tolerance</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<p><span style='font-size:10.0pt'> Water stress related trait <S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt'> Flood related
trait <S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'>
Elongation ability</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Kneeing ability</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Submergence tolerance</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt'> Drought related
trait <S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'>
Drought recovery </span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Drought resistance</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Drought sensitivity</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<p><span style='font-size:10.0pt'> Chemical stress related
trait <S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt'> Soil stress
related trait <S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'>
Acid sensitivity (injury)</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Alkali sensitivity (injury)</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Aluminium toxicity sensitivity</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Iron toxicity sensitivity</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Phosphorous deficiency sensitivity</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'>
Saline sensitivity (injury)</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Zinc deficiency sensitivity</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'>
Herbicide sensitivity </span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'>
Plant growth regulator sensitivity </span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'>
Sensitivity to other chemicals</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<p><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Fertility/sterility</span><o:p></o:p></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt"><S-Display-Name="Affiliation type">
<br><span style='font-size:10.0pt'> Male sterility trait <S-Display-Name="Affiliation type"></select>
<div class="MsoNormal"><span style='font-size:10.0pt'>
Male sterility type<S-Display-Name="Affiliation type"></span><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Academic">CMS<option VALUE="Corporate">TGMS<option VALUE="Corporate">PGMS<option VALUE="Corporate">TPGMS<option VALUE="Corporate">Genetically
engineered<option VALUE="Corporate">Nuclear type<option VALUE="Others">Others</select><span style='font-size:10.0pt;font-family:Arial'>
Abortion Pattern of male sterile line<S-Display-Name="Affiliation type"></span><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Academic">Pollen
free<option VALUE="Corporate">Abortion at uninucleate stage of pollen<option VALUE="Corporate">Abortion
at binucleate stage of pollen<option VALUE="Corporate">Abortion at trinucleate
stage of pollen<option VALUE="Corporate">Abortion at later stage and
pollen looks like a fertile pollen<option VALUE="Others">Others</select><span style='font-size:10.0pt'>Pollen
sterility<S-Display-Name="Affiliation type"></span><span
style='font-size:10.0pt;font-family:Arial'><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Academic">Completely
sterile<option VALUE="Corporate">Highly sterile<option VALUE="Corporate">Sterile<option VALUE="Corporate">Partially
sterile<option VALUE="Corporate">Partially fertile to fertile</select><span style='font-size:10.0pt;font-family:Arial'>Degree
of male sterility </span></div>
<span style='font-size:10.0pt;font-family:Arial'> Female sterility
trait</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Self incompatible trait</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Unfilled grain</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'>Spikelet fertility <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
fertile<option VALUE="Others">Fertile<option VALUE="Government">Partly
sterile<option VALUE="Government">Highly sterile</select><span style='font-size:10.0pt;font-family:Arial'>
Fertility restoration <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Completely
restoration<option VALUE="Government">Insignficant<option VALUE="Others">Less
partially<option VALUE="Government">Partial restoration</select>
<p><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>
<tr>
<td><span style='font-size:10.0pt'>Heterosis</span></td>
<td><S-Display-Name="Affiliation type">
<br><span style='font-size:10.0pt;font-family:Arial'>Extant of outcrossing<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Good<option VALUE="Government">Intermediate<option VALUE="Others">Moderate<option VALUE="Government">Poor<option VALUE="Government">Significant</select><span style='font-size:10.0pt;font-family:Arial'>
Glume opening<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Erect<option VALUE="Government">Horizontal<option VALUE="Others">Intermediate<option VALUE="Government">Moderate<option VALUE="Government">Partially
erect</select><span style='font-size:10.0pt;font-family:Arial'>
Stigma exsertion in male sterile lines<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Well
exserted<option VALUE="Others">Moderately well exserted<option VALUE="Government">Just
exserted<option VALUE="Government">Partly exserted<option VALUE="Corporate">Enclosed</select>
<br><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Maturity</span><o:p></o:p></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt"><S-Display-Name="Affiliation type"><span style='font-size:10.0pt;font-family:Arial'>
Date to flower</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><S-Display-Name="Affiliation type"><span style='font-size:10.0pt;font-family:Arial'>
Date to heading</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><S-Display-Name="Affiliation type"><span style='font-size:10.0pt;font-family:Arial'>
Date to maturity</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Photosensitivity</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<p><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Others </span><o:p></o:p></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt">
<br><span style='font-size:10.0pt'> Height related trait <S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'>Plant height <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Semidwarf<option VALUE="Government">Intermediate<option VALUE="Corporate">Tall</select><span style='font-size:10.0pt;font-family:Arial'>
Seedling height</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt'> Vigor related trait <S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'> Seedling vigor <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Extra
vigorous<option VALUE="Others"> Vigorous<option VALUE="Government">Normal<option VALUE="Government">Weak<option VALUE="Corporate">Very
weak</select><span style='font-size:10.0pt;font-family:Arial'> Vegetative
vigor <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Extra
vigorous<option VALUE="Others"> Vigorous<option VALUE="Government">Normal<option VALUE="Government">Weak<option VALUE="Corporate">Very
weak</select>
<br><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><![if !supportEmptyParas]><![endif]><o:p></o:p></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><![if !supportEmptyParas]><![endif]><o:p></o:p></div>
</td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt;font-family:Arial'><b>Morphological
trait</b></span>
<br><span style='font-size:10.0pt;font-family:Arial'> Evidence <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4 </select></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><![if !supportEmptyParas]><![endif]><o:p></o:p></div>
</td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>(a) Root morphology</span><o:p></o:p></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt"><span style='font-size:10.0pt;font-family:Arial'>
Root length</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Root weight</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Root/shoot ratio</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Root thickness</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Root penetration index</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Root branching profile </span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>(b) Stem morphology</span><o:p></o:p></div>
</td>
<td WIDTH="10%" style="width:10.0%;padding:.75pt .75pt .75pt .75pt"><span style='font-size:10.0pt;font-family:Arial'>Culm
length</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Culm number</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Culm angle<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Erect<option VALUE="Others">Intermediate<option VALUE="Government">Open<option VALUE="Government">Spreading<option VALUE="Corporate">Procumbent</select><span style='font-size:10.0pt;font-family:Arial'>
Basal intenode diameter</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Culm strength<select NAME="a_type"><option SELECTED VALUE="1">--<option SELECTED VALUE="1">Strong<option VALUE="Others">Moderately
strong<option VALUE="Government">Intermediate<option VALUE="Government">Weak<option VALUE="Corporate">Very
weak</select><span style='font-size:10.0pt;font-family:Arial'> Culm
internode color <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Green<option VALUE="Government">Light
gold<option VALUE="Others">Purple lines<option VALUE="Government">Purple</select><span style='font-size:10.0pt;font-family:Arial'>
Internode length</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Stem thickness</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Vascular tissue</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Culm internode colour </span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Nodal tillering</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Nodal rooting</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>(c) Leaf morphology</span><o:p></o:p></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt"><span style='font-size:10.0pt;font-family:Arial'>Leaf
length</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Leaf width<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Broad<option VALUE="Government">Narrow<option VALUE="Others">Very
narrow</select><span style='font-size:10.0pt;font-family:Arial'>
Leaf blade pubescence<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Glabrous<option VALUE="Government">Intermediate<option VALUE="Others">Pubescent</select><span style='font-size:10.0pt;font-family:Arial'>
Leaf blade color<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Light
green<option VALUE="Government">Green<option VALUE="Others">Dark green)<option VALUE="Government">Purple
tips<option VALUE="Government">Purple margins<option VALUE="Academic">Purple
blotch, purple mixed with green<option VALUE="Government">Purple</select><span style='font-size:10.0pt;font-family:Arial'>
Basal leaf sheath color<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Green<option VALUE="Government">Purple
lines<option VALUE="Others">Light purple<option VALUE="Government">Purple</select>
<br><span style='font-size:10.0pt;font-family:Arial'> Leaf
angle<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Erect<option VALUE="Government">Horizontal<option VALUE="Corporate">Droopy</select><span style='font-size:10.0pt;font-family:Arial'>
Flag leaf angle<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Erect<option VALUE="Government">Intermediate<option VALUE="Government">Horizontal<option VALUE="Government">Descending </select><span style='font-size:10.0pt;font-family:Arial'>
Ligule length</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Ligule color<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">White<option VALUE="Government">Purple
lines<option VALUE="Others">Purple</select><span style='font-size:10.0pt;font-family:Arial'>
Ligule shape<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Acute
to acuminate<option VALUE="Government">2-cleft<option VALUE="Others">Truncate</select><span style='font-size:10.0pt;font-family:Arial'>
Collar color<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Light
green<option VALUE="Government">Green<option VALUE="Others">Purple</select>
<br><span style='font-size:10.0pt;font-family:Arial'> Auricle color <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Light
green<option VALUE="Government">Purple</select><span style='font-size:10.0pt;font-family:Arial'>
Leaf thickness</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Leaf structure</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Secondary leaf sheath elongation</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>(d) Panicle morphology</span><o:p></o:p></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt"><span style='font-size:10.0pt;font-family:Arial'>
Number of panicles </span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Panicle length</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Panicle type<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Compact<option VALUE="Government">Intermediate<option VALUE="Corporate">Open</select><span style='font-size:10.0pt;font-family:Arial'>
Panicle weight</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Panicle axis<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Straight<option VALUE="Government">Droopy</select>
<br><span style='font-size:10.0pt;font-family:Arial'> Secondary
branching of panicles<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Absent<option VALUE="Government">Light<option VALUE="Government">Heavy<option VALUE="Others">Clustering</select><span style='font-size:10.0pt;font-family:Arial'>
Awning<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Absent<option VALUE="Government">Short
and partly awned<option VALUE="Government">Short and fully awned<option VALUE="Government">Long
and
partly awned<option VALUE="Corporate">Long and fully awned</select><span style='font-size:10.0pt;font-family:Arial'>
Awn color<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Awnless<option VALUE="Government">Straw<option VALUE="Government">Gold<option VALUE="Others">Brown,
tawny<option VALUE="Government">Red<option VALUE="Government">Purple<option VALUE="Academic">Black</select><span style='font-size:10.0pt;font-family:Arial'>
Apiculus color<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">White<option VALUE="Government">Straw<option VALUE="Others">Brown,
tawny<option VALUE="Government">Red<option VALUE="Government">Red apex<option VALUE="Academic">Purple<option VALUE="Government">Purple
apex</select>
<br><span style='font-size:10.0pt;font-family:Arial'> Stigma
color<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">White<option VALUE="Government">Light
green<option VALUE="Others">Yellow<option VALUE="Government">Light purple<option VALUE="Government">Purple</select><span style='font-size:10.0pt;font-family:Arial'>
Lemma and palea color<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Straw<option VALUE="Government">Gold
and gold furrows on straw background<option VALUE="Government">Brown spots
on straw<option VALUE="Others">B rown furrows on straw<option VALUE="Government">Brown,
tawny<option VALUE="Government">Raddish to light purple<option VALUE="Academic">Purple
spots on straw<option VALUE="Government">Purple furrows on straw<option VALUE="Corporate">Purple<option VALUE="Corporate">Black<option VALUE="Corporate">White</select><span style='font-size:10.0pt;font-family:Arial'>
Sterile lemma length<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Absent<option VALUE="Government">Short<option VALUE="Others">Medium<option VALUE="Government">Long<option VALUE="Government">Extra
long, equal to or linger than the lemma<option VALUE="Corporate">Asymmetrical</select>
<br><span style='font-size:10.0pt;font-family:Arial'> Lemma
and Palea pubescence<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Glabrous<option VALUE="Government">Hairs
on lemma keel<option VALUE="Others">Hairs on upper portion<option VALUE="Government">Short
hairs<option VALUE="Government">Long hairs, velvety</select><span style='font-size:10.0pt;font-family:Arial'>
Sterile lemma color<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Straw,
yellow<option VALUE="Government">Gold<option VALUE="Others">Red<option VALUE="Government">Purple</select><span style='font-size:10.0pt;font-family:Arial'>
Sterile lemma length<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Absent<option VALUE="Government">Short<option VALUE="Others">Medium<option VALUE="Government">Long<option VALUE="Government">Extra
long, equal to or linger than the lemma<option VALUE="Corporate">Asymmetrical</select>
<br>
<p><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>(e) Grain morphology</span><o:p></o:p></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt"><span style='font-size:10.0pt;font-family:Arial'>100-Grain
weight</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Grain length </span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Grain size</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Grain thickness</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Grain width</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Seed coat color<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">White<option VALUE="Government">Light
brown<option VALUE="Others">Speckled brown<option VALUE="Government">Brown<option VALUE="Government">Red<option VALUE="Academic">Variable
purple<option VALUE="Government">Purple</select>
<br><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><![if !supportEmptyParas]><![endif]><o:p></o:p></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><![if !supportEmptyParas]><![endif]><o:p></o:p></div>
</td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt;font-family:Arial'><b>Anatomical
Features </b></span></div>
<span style='font-size:10.0pt;font-family:Arial'> Evidence <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4 </select>
<br><span style='font-size:10.0pt;font-family:Arial'>(if any recorded)</span></td>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><textarea ROWS="2" COLS="40" NAME="Ref details"></textarea></div>
</td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td><span style='font-size:10.0pt;font-family:Arial'>Linkage map information</span>
<br><span style='font-size:10.0pt;font-family:Arial'> Evidence <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4 </select></td>
<td>
<div class="MsoNormal"><span style='font-size:10.0pt;font-family:Arial'>
Chromosome no. <S-Display-Name="Affiliation type"></span><span
style='font-size:10.0pt'><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">1<option VALUE="Government">2<option VALUE="Others">3<option VALUE="Government">4<option VALUE="Government">5<option VALUE="Academic">6<option VALUE="Government">7<option VALUE="Corporate">8<option VALUE="Corporate">9<option VALUE="Corporate">10<option VALUE="Corporate">11<option VALUE="Corporate">12</select>
<br><span style='font-size:10.0pt'> Location on chromosome (cM) </span><input TYPE="text" MAXLENGTH="30" SIZE="30" NAME="cM position"></div>
<span style='font-size:10.0pt'> Linked marker(s) </span><input TYPE="text" MAXLENGTH="30" SIZE="30" NAME="cM position">
<br><span style='font-size:10.0pt;font-family:Arial'> If others is
the option please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>
<tr>
<td><span style='font-size:10.0pt'>Sequence information</span>
<br><span style='font-size:10.0pt;font-family:Arial'> Evidence <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4 </select></td>
<td><span style='font-size:10.0pt'>Allele </span><input TYPE="text" MAXLENGTH="30" SIZE="30" NAME="cM position"><span style='font-size:10.0pt'>Functional
nucleotide polymorphism (FNP) </span><input TYPE="text" MAXLENGTH="30" SIZE="30" NAME="cM position">
<br><span style='font-size:10.0pt'>TAGS </span><input TYPE="text" MAXLENGTH="30" SIZE="30" NAME="cM position">
<br><span style='font-size:10.0pt;font-family:Arial'> If others is
the option please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>
<tr>
<td><span style='font-size:10.0pt'>Candidate gene and QTL information </span>
<br><span style='font-size:10.0pt;font-family:Arial'> Evidence <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4 </select></td>
<td><span style='font-size:10.0pt'>Candidate gene accession number</span><input TYPE="text" MAXLENGTH="30" SIZE="30" NAME="cM position">
<br><span style='font-size:10.0pt'>QTL information accession number</span><input TYPE="text" MAXLENGTH="30" SIZE="30" NAME="cM position"></td>
</tr>
<tr>
<td><span style='font-size:10.0pt'>Comparative Map Information</span></td>
<td>
<div class="MsoNormal"><span style='font-size:10.0pt'>Putative homolog<S-Display-Name="Comparative Map Ac."><input TYPE="text" MAXLENGTH="15" SIZE="15" NAME="fname"></span><span style='font-size:10.0pt'>Crop<S-Display-Name="Affiliation type"></span><span
style='font-size:10.0pt;font-family:Arial'><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Rice<option VALUE="Government">Maize<option VALUE="Others">Sorghum<option VALUE="Government">Barley<option VALUE="Government">Pearmillet<option VALUE="Academic">Wheat<option VALUE="Government">Oat<option VALUE="Corporate">Sugarcane<option VALUE="Corporate">Arabidopsis</select></span><span style='font-size:10.0pt;font-family:Arial'>
Evidence <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4 </select>
<br><span style='font-size:10.0pt'>Putative homolog<S-Display-Name="Comparative Map Ac."><input TYPE="text" MAXLENGTH="15" SIZE="15" NAME="fname"></span><span style='font-size:10.0pt'>Crop<S-Display-Name="Affiliation type"></span><span
style='font-size:10.0pt;font-family:Arial'><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Rice<option VALUE="Government">Maize<option VALUE="Others">Sorghum<option VALUE="Government">Barley<option VALUE="Government">Pearmillet<option VALUE="Academic">Wheat<option VALUE="Government">Oat<option VALUE="Corporate">Sugarcane<option VALUE="Corporate">Arabidopsis</select></span><span style='font-size:10.0pt;font-family:Arial'>
Evidence <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4 </select>
<br><span style='font-size:10.0pt'>Putative homolog<S-Display-Name="Comparative Map Ac."><input TYPE="text" MAXLENGTH="15" SIZE="15" NAME="fname"></span><span style='font-size:10.0pt'>Crop<S-Display-Name="Affiliation type"></span><span
style='font-size:10.0pt;font-family:Arial'><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Rice<option VALUE="Government">Maize<option VALUE="Others">Sorghum<option VALUE="Government">Barley<option VALUE="Government">Pearmillet<option VALUE="Academic">Wheat<option VALUE="Government">Oat<option VALUE="Corporate">Sugarcane<option VALUE="Corporate">Arabidopsis</select></span><span style='font-size:10.0pt;font-family:Arial'>
Evidence <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4 </select>
<br><span style='font-size:10.0pt'>Putative homolog<S-Display-Name="Comparative Map Ac."><input TYPE="text" MAXLENGTH="15" SIZE="15" NAME="fname"></span><span style='font-size:10.0pt'>Crop<S-Display-Name="Affiliation type"></span><span
style='font-size:10.0pt;font-family:Arial'><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Rice<option VALUE="Government">Maize<option VALUE="Others">Sorghum<option VALUE="Government">Barley<option VALUE="Government">Pearmillet<option VALUE="Academic">Wheat<option VALUE="Government">Oat<option VALUE="Corporate">Sugarcane<option VALUE="Corporate">Arabidopsis</select></span><span style='font-size:10.0pt;font-family:Arial'>
Evidence <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4 </select>
<br><span style='font-size:10.0pt'>Putative homolog<S-Display-Name="Comparative Map Ac."><input TYPE="text" MAXLENGTH="15" SIZE="15" NAME="fname"></span><span style='font-size:10.0pt'>Crop<S-Display-Name="Affiliation type"></span><span
style='font-size:10.0pt;font-family:Arial'><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Rice<option VALUE="Government">Maize<option VALUE="Others">Sorghum<option VALUE="Government">Barley<option VALUE="Government">Pearmillet<option VALUE="Academic">Wheat<option VALUE="Government">Oat<option VALUE="Corporate">Sugarcane<option VALUE="Corporate">Arabidopsis</select></span><span style='font-size:10.0pt;font-family:Arial'>
Evidence <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4 </select>
<br><span style='font-size:10.0pt'>Putative homolog<S-Display-Name="Comparative Map Ac."><input TYPE="text" MAXLENGTH="15" SIZE="15" NAME="fname"></span><span style='font-size:10.0pt'>Crop<S-Display-Name="Affiliation type"></span><span
style='font-size:10.0pt;font-family:Arial'><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Rice<option VALUE="Government">Maize<option VALUE="Others">Sorghum<option VALUE="Government">Barley<option VALUE="Government">Pearmillet<option VALUE="Academic">Wheat<option VALUE="Government">Oat<option VALUE="Corporate">Sugarcane<option VALUE="Corporate">Arabidopsis</select></span><span style='font-size:10.0pt;font-family:Arial'>
Evidence <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4 </select></div>
</td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt;font-family:Arial'>Reference </span></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt;font-family:Arial'>Reference
category</span><span style='font-size:10.0pt;font-family:Arial'><select NAME="Ref category"><option VALUE="1">--<option SELECTED VALUE="1">Published<option VALUE="2">Personal
communication<option VALUE="2">Curator</select>Ref. curator <select NAME="Ref Curator"><option VALUE="1">--<option VALUE="1">JN<option SELECTED VALUE="1">SRM</select>(select
only when opted the Curator option in Ref. category)</span>
<br><span style='font-size:10.0pt;font-family:Arial'>Ref. Source</span><select NAME="ref source"><option VALUE="1">--<option SELECTED VALUE="1">PubMed<option VALUE="2">ISBN<option VALUE="2">Website<option VALUE="2">Database<option VALUE="2">Others</select>
<br><span style='font-size:10.0pt;font-family:Arial'>Ref. Details</span>
<br><span style='font-size:10.0pt'> Reference1<S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt'>Title<input TYPE="text" MAXLENGTH="90" SIZE="90" NAME="cM position">
<br><span style='font-size:10.0pt'>Journal<input TYPE="text" MAXLENGTH="90" SIZE="90" NAME="cM position">
<br><span style='font-size:10.0pt'>Author<input TYPE="text" MAXLENGTH="75" SIZE="75" NAME="cM position">Year</span><input TYPE="text" MAXLENGTH="25" SIZE="25" NAME="cM position">
<br><span style='font-size:10.0pt'> Reference2<S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt'>Title<input TYPE="text" MAXLENGTH="90" SIZE="90" NAME="cM position">
<br><span style='font-size:10.0pt'>Journal<input TYPE="text" MAXLENGTH="90" SIZE="90" NAME="cM position">
<br><span style='font-size:10.0pt'>Author<input TYPE="text" MAXLENGTH="75" SIZE="75" NAME="cM position">Year</span><input TYPE="text" MAXLENGTH="25" SIZE="25" NAME="cM position">
<br><span style='font-size:10.0pt'> Reference3<S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt'>Title<input TYPE="text" MAXLENGTH="90" SIZE="90" NAME="cM position">
<br><span style='font-size:10.0pt'>Journal<input TYPE="text" MAXLENGTH="90" SIZE="90" NAME="cM position">
<br><span style='font-size:10.0pt'>Author<input TYPE="text" MAXLENGTH="75" SIZE="75" NAME="cM position">Year</span><input TYPE="text" MAXLENGTH="25" SIZE="25" NAME="cM position">
<br><span style='font-size:10.0pt'> Reference4<S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt'>Title<input TYPE="text" MAXLENGTH="90" SIZE="90" NAME="cM position">
<br><span style='font-size:10.0pt'>Journal<input TYPE="text" MAXLENGTH="90" SIZE="90" NAME="cM position">
<br><span style='font-size:10.0pt'>Author<input TYPE="text" MAXLENGTH="75" SIZE="75" NAME="cM position">Year</span><input TYPE="text" MAXLENGTH="25" SIZE="25" NAME="cM position"></div>
</td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Comments</span></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><textarea ROWS="5" COLS="60" NAME="comments"></textarea></div>
</td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Pictures of the mutant</span></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt;font-family:Arial'>Click
"<b>Browse</b>" to find files then "<b>Upload</b>" Your results will be
displayed here.</span></div>
<span style='font-size:10.0pt;font-family:Arial;color:red'>Note:</span><span
style='font-size:10.0pt;font-family:Arial'>
Make sure your files are named correctly and are in JPEG format. Easy Upload
will replace existing files of the same name.</span>
<br><form action="/filemanager/upload" method=post enctype="multipart/form-data">
<p class="MsoNormal"><span style='display:none;mso-hide:all'><input TYPE="hidden" NAME="directory"><input TYPE="hidden" NAME="dispopts" VALUE="html, gif, jpg, other;;*"></span>
<br><input type=file name=userfile size=40>
<br><![if !supportLineBreakNewLine]>
<br><![endif]><input type=file name=userfile size=40><o:p></o:p>
<br><input type=file name=userfile size=40 ACTION="/filemanager/upload"
ENCTYPE="multipart/form-data" METHOD=post>
<br><span style='font-size:10.0pt;font-family:Arial'> Evidence <select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4 </select>
<center>
<p><input TYPE="submit" ACTION="/filemanager/upload" VALUE="Upload Files" ENCTYPE="multipart/form-data" METHOD="post" NAME="op-upload"><input TYPE="reset" VALUE=" Clear "></center>
<p><input TYPE="checkbox" NAME="lowercase"><span style='font-size:10.0pt;
font-family:Arial'>Automatically
convert filenames to lowercase</span>
<br><input TYPE="checkbox" NAME="addhtml"><span style='font-size:10.0pt;font-family:
Arial'>Automatically
change ".JPEG" extensions to ".jpeg" </span>
<br></form></td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><![if !supportEmptyParas]><![endif]><o:p></o:p></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><![if !supportEmptyParas]><![endif]><o:p></o:p></div>
</td>
</tr>
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><![if !supportEmptyParas]><![endif]><o:p></o:p></div>
</td>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><![if !supportEmptyParas]><![endif]><o:p></o:p></div>
</td>
</tr>
</table>
<center>
<p><span style='font-size:10.0pt'>Please try to submit online, if this
is not possible you can<a href="http://www.gramene.org/plant%20ontologies/2001mutant_sub.jpg">
click </a>here to print a copy</span>
<br><span style='font-size:10.0pt'>For suggestion please mail to <a href="../../Documents and Settings/jn66/Desktop/mail%20to:%20jn66@cornell.edu">Dr.
Junjian Ni</a> / <a href="../../Documents and Settings/jn66/Desktop/mail%20to:%20pj37@cornell.edu">Dr.
Pankaj Jaiswal</a></span>
<br><span style='font-size:10.0pt'>Copy right <a href="http://www.gramene.org">www.gramene.org</a></span></center>
<p style="margin-bottom:12.0pt"><![if !supportEmptyParas]><![endif]><o:p></o:p>
<br></form></div>
</body>
</html>