BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

seqhash.html 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <tr id="seqhash_tr">
  2. <td>
  3. <label for="seqhash">{{ db.name }}</label>
  4. {#
  5. <br />
  6. <a class="add_artist_button brackets" onclick="AddArtistField()">+</a>
  7. <a class="remove_artist_button brackets" onclick="RemoveArtistField()">&minus;</a>
  8. #}
  9. </td>
  10. <td>
  11. <textarea
  12. rows="2"
  13. name="seqhash"
  14. id="seqhash"
  15. {# Needs to be all on one line #}
  16. placeholder="{{ db.desc }}">{{ seqhash }}</textarea>
  17. <input type="radio" id="dna" name="seqhash_meta1" value="DNA" checked /> DNA
  18. {# <label for="dna">DNA</label> #}
  19. &emsp;
  20. <input type="radio" id="rna" name="seqhash_meta1" value="RNA" /> RNA
  21. {# <label for="rna">RNA</label> #}
  22. &emsp;
  23. <input type="radio" id="protein" name="seqhash_meta1" value="PROTEIN" /> Protein
  24. {# <label for="protein">Protein</label> #}
  25. <br />
  26. <input type="radio" id="linear" name="seqhash_meta2" value="false" checked /> Linear
  27. {# <label for="linear">Linear</label> #}
  28. &emsp;
  29. <input type="radio" id="circular" name="seqhash_meta2" value="true" /> Circular
  30. {# <label for="circular">Circular</label> #}
  31. <br />
  32. <input type="radio" id="double_stranded" name="seqhash_meta3" value="true" checked /> Double-Stranded
  33. {# <label for="double_stranded">Double-Stranded</label> #}
  34. &emsp;
  35. <input type="radio" id="single_stranded" name="seqhash_meta3" value="false" /> Single-Stranded
  36. {# <label for="single_stranded">Single-Stranded</label> #}
  37. <p>{{ db.note|raw }}</p>
  38. </td>
  39. </tr>