trivial checking / flagging issues to enable testing of merging iterator performance

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@460 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
depristo 2009-04-17 03:11:59 +00:00
parent dbf2344cef
commit ee5ab9536f
2 changed files with 2 additions and 2 deletions

View File

@ -254,7 +254,6 @@ public class GenomeAnalysisTK extends CommandLineProgram {
if ( REF_FILE_ARG == null )
Utils.scareUser(String.format("Locus-based traversals require a reference file but none was given"));
if ( INPUT_FILE == null ) {
if ( walker.requiresReads() )
Utils.scareUser(String.format("Analysis %s requires reads, but none were given", Analysis_Name));

View File

@ -63,7 +63,8 @@ public class TraverseByReads extends TraversalEngine {
verifyingSamReadIter.setCheckOrderP(false);
}
verifySortOrder(refFileName != null || walker.requiresOrderedReads());
if ( samReader != null )
verifySortOrder(refFileName != null || walker.requiresOrderedReads());
// Initialize the walker
walker.initialize();