Skip to content

Commit ab62755

Browse files
author
helrick
committed
only showing shortform in rgen selection
1 parent 99b2868 commit ab62755

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GuideFinder/src/GuideSearch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def getRgenHTML(self):
146146
""" returns the available rgens in a preformmatted HTML select tag """
147147
HTML = '<select class="form-control" id="RGENS" onchange="getProtospacerLengths()">'
148148
for rgen in self.dbConnection.rgenCollection.find().sort([("rgenID",1)]):
149-
HTML += '<option value="{rgenID}">{Longform}: {Shortform}</option>'.format_map(rgen)
149+
HTML += '<option value="{rgenID}">{Shortform}</option>'.format_map(rgen)
150150
HTML += "</select>"
151151

152152
return HTML

0 commit comments

Comments
 (0)