Deprecated calls to getSamReader on both the GenomeAnalysisEngine and the TraversalEngine. This call fails in the new style traversals, but it won't disapear until the cut-over to the new traversals is complete.

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@671 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
aaron 2009-05-12 18:52:42 +00:00
parent 630066cc0a
commit 6e69193e3c
2 changed files with 8 additions and 2 deletions

View File

@ -293,7 +293,13 @@ public class GenomeAnalysisEngine {
return outputTracker;
}
/**
* This function is deprecated in the new traversal engines, if you need to get the header
* please get the engine and then use the getHeader function
*
* @return
*/
@Deprecated
public SAMFileReader getSamReader() {
return this.engine.getSamReader();
}

View File

@ -590,6 +590,6 @@ public abstract class TraversalEngine {
logger.warn(msg);
}
}
@Deprecated
public SAMFileReader getSamReader() { return this.samReader; }
}