Skip to content
Snippets Groups Projects
Commit b10d1f8d authored by tjc's avatar tjc
Browse files

stub for getting feature_cvterm

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@4839 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 8abf8086
No related branches found
No related tags found
No related merge requests found
......@@ -482,6 +482,11 @@ public class DatabaseDocument extends Document
dao.getFeatureDbXRefsByFeatureUniquename(null));
Hashtable synonym = getAllFeatureSynonyms(dao, null);
List featureCvTerms = dao.getFeatureCvTermsByFeature(null);
if(featureCvTerms != null)
System.out.println("\n\n"+featureCvTerms.size()+"\n\n");
// create gff byte stream
for(int i = 0; i < feature_size; i++)
{
......@@ -511,7 +516,8 @@ public class DatabaseDocument extends Document
}
/**
* @throws SQLException
* Get a <code>Hashtable</code> of feature_id keys and their corresponding
* feature_synonym
*
*/
private Hashtable getAllFeatureSynonyms(final GmodDAO dao,
......@@ -521,7 +527,7 @@ public class DatabaseDocument extends Document
Hashtable synonym = new Hashtable();
Integer feature_id;
Vector value;
List value;
FeatureSynonym alias;
for(int i=0; i<list.size(); i++)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment