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

add range to input option

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@6963 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 1313af59
No related branches found
No related tags found
No related merge requests found
......@@ -127,6 +127,7 @@ public class DatabaseDocument extends Document
// include children in reading from the database
private boolean readChildren = true;
// range to retrieve features for
private Range range;
private Feature geneFeature;
......@@ -480,14 +481,21 @@ public class DatabaseDocument extends Document
// Retrieve all features within a range
// List schemaList = new Vector();
// schemaList.add(schema);
Collection featureLocs = geneFeature.getFeatureLocsForFeatureId();
Iterator it = featureLocs.iterator();
final FeatureLoc featureLoc = (FeatureLoc)it.next();
final Feature srcFeature;
if(geneFeature != null)
{
Collection featureLocs = geneFeature.getFeatureLocsForFeatureId();
Iterator it = featureLocs.iterator();
final FeatureLoc featureLoc = (FeatureLoc)it.next();
final Feature srcFeature = featureLoc.getFeatureBySrcFeatureId();
setName(srcFeature.getUniqueName());
this.srcFeatureId = Integer.toString(srcFeature.getFeatureId());
srcFeature = featureLoc.getFeatureBySrcFeatureId();
setName(srcFeature.getUniqueName());
this.srcFeatureId = Integer.toString(srcFeature.getFeatureId());
}
else
{
srcFeature = dao.getFeatureById(Integer.parseInt(srcFeatureId));
}
ByteBuffer entryBuffer = getFeaturesInRange(srcFeature, range, dao);
getChadoSequence(srcFeature, entryBuffer);
......@@ -2966,4 +2974,9 @@ public class DatabaseDocument extends Document
getCvterms(dao);
}
}
public void setRange(Range range)
{
this.range = range;
}
}
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