We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99b2868 commit ab62755Copy full SHA for ab62755
GuideFinder/src/GuideSearch.py
@@ -146,7 +146,7 @@ def getRgenHTML(self):
146
""" returns the available rgens in a preformmatted HTML select tag """
147
HTML = '<select class="form-control" id="RGENS" onchange="getProtospacerLengths()">'
148
for rgen in self.dbConnection.rgenCollection.find().sort([("rgenID",1)]):
149
- HTML += '<option value="{rgenID}">{Longform}: {Shortform}</option>'.format_map(rgen)
+ HTML += '<option value="{rgenID}">{Shortform}</option>'.format_map(rgen)
150
HTML += "</select>"
151
152
return HTML
0 commit comments