Skip to content
Snippets Groups Projects
Commit b0bac02d authored by Sascha Steinbiss's avatar Sascha Steinbiss
Browse files

remove obsolete comment

parent a0f30e21
No related branches found
No related tags found
No related merge requests found
...@@ -886,7 +886,6 @@ public class GFFStreamFeature extends SimpleDocumentFeature implements ...@@ -886,7 +886,6 @@ public class GFFStreamFeature extends SimpleDocumentFeature implements
for (int value_index = 0; value_index < values.size(); ++value_index) { for (int value_index = 0; value_index < values.size(); ++value_index) {
int goindex = values.elementAt(value_index).indexOf("GOid="); int goindex = values.elementAt(value_index).indexOf("GOid=");
int termindex = values.elementAt(value_index).indexOf(";term="); int termindex = values.elementAt(value_index).indexOf(";term=");
/* collect GO IDs for later output in Ontology_term attribute */
if (goindex > -1 && termindex > -1) { if (goindex > -1 && termindex > -1) {
buffer.append(GFF3Encoder.encode(values.elementAt(value_index) buffer.append(GFF3Encoder.encode(values.elementAt(value_index)
.substring(goindex + 5, termindex))); .substring(goindex + 5, termindex)));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment