Rev the latest version of Picard.
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@3575 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
5b370ffc62
commit
db1383d0b2
|
|
@ -82,6 +82,14 @@ public class IndexedFastaSequenceFile implements ReferenceSequenceFile {
|
||||||
sanityCheckDictionaryAgainstIndex();
|
sanityCheckDictionaryAgainstIndex();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Always returns true for this implementation.
|
||||||
|
* @return True.
|
||||||
|
*/
|
||||||
|
public boolean isIndexed() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Loads a dictionary, if available.
|
* Loads a dictionary, if available.
|
||||||
* @param fastaFile File to check for a match.
|
* @param fastaFile File to check for a match.
|
||||||
|
|
|
||||||
|
|
@ -278,10 +278,20 @@ public abstract class LocusViewTemplate extends BaseTest {
|
||||||
return dictionary;
|
return dictionary;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean isIndexed() { return false; }
|
||||||
|
|
||||||
public ReferenceSequence nextSequence() {
|
public ReferenceSequence nextSequence() {
|
||||||
throw new UnsupportedOperationException("Fake implementation doesn't support a getter");
|
throw new UnsupportedOperationException("Fake implementation doesn't support a getter");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public ReferenceSequence getSequence( String contig ) {
|
||||||
|
throw new UnsupportedOperationException("Fake implementation doesn't support a getter");
|
||||||
|
}
|
||||||
|
|
||||||
|
public ReferenceSequence getSubsequenceAt( String contig, long start, long stop ) {
|
||||||
|
throw new UnsupportedOperationException("Fake implementation doesn't support a getter");
|
||||||
|
}
|
||||||
|
|
||||||
public void reset() {
|
public void reset() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Binary file not shown.
Binary file not shown.
|
|
@ -1,3 +1,3 @@
|
||||||
<ivy-module version="1.0">
|
<ivy-module version="1.0">
|
||||||
<info organisation="edu.mit.broad" module="picard-private-parts" revision="1409-sharding" status="integration" publication="20100606141600" />
|
<info organisation="edu.mit.broad" module="picard-private-parts" revision="1432" status="integration" publication="20100616174700" />
|
||||||
</ivy-module>
|
</ivy-module>
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
<ivy-module version="1.0">
|
|
||||||
<info organisation="net.sf" module="picard" revision="1.19.430-sharding" status="release" />
|
|
||||||
</ivy-module>
|
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,3 @@
|
||||||
|
<ivy-module version="1.0">
|
||||||
|
<info organisation="net.sf" module="picard" revision="1.22.448" status="release" />
|
||||||
|
</ivy-module>
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
<ivy-module version="1.0">
|
|
||||||
<info organisation="net.sf" module="sam" revision="1.19.430-sharding" status="release" />
|
|
||||||
</ivy-module>
|
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,3 @@
|
||||||
|
<ivy-module version="1.0">
|
||||||
|
<info organisation="net.sf" module="sam" revision="1.22.448" status="release" />
|
||||||
|
</ivy-module>
|
||||||
Loading…
Reference in New Issue