delete the old strategy

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@314 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
aaron 2009-04-07 19:40:03 +00:00
parent 08fddd43af
commit 6ce9e0f941
1 changed files with 0 additions and 58 deletions

View File

@ -1,58 +0,0 @@
package org.broadinstitute.sting.gatk.dataSources.shards;
import net.sf.samtools.SAMSequenceDictionary;
/**
*
* User: aaron
* Date: Apr 6, 2009
* Time: 7:18:19 PM
*
* The Broad Institute
* SOFTWARE COPYRIGHT NOTICE AGREEMENT
* This software and its documentation are copyright 2009 by the
* Broad Institute/Massachusetts Institute of Technology. All rights are reserved.
*
* This software is supplied without any warranty or guaranteed support whatsoever. Neither
* the Broad Institute nor MIT can be responsible for its use, misuse, or functionality.
*
*/
/**
* @author aaron
* @version 1.0
* @date Apr 6, 2009
* <p/>
* Class AdaptiveShard
* <p/>
* A descriptions should go here. Blame aaron if it's missing.
*/
class AdaptiveShardStrategy extends ShardStrategy {
// default the next size to 100,000
private long nextShardSize = 100000;
/**
* the constructor, taking a seq dictionary to parse out contigs
*
* @param dic the seq dictionary
*/
AdaptiveShardStrategy(SAMSequenceDictionary dic, long startSize) {
super(dic);
this.nextShardSize = startSize;
}
public void setNextShardSize(long size) {
nextShardSize = size;
}
/**
* This is how the various shards strategies implements their approach
*
* @return the next shard size
*/
protected long nextShardSize() {
return nextShardSize;
}
}