Disable CnyPairHMM
This commit is contained in:
parent
d79b5f0931
commit
195f0c3e98
|
|
@ -18,7 +18,16 @@ public final class CnyPairHMM extends PairHMM implements BatchPairHMM {
|
|||
private List<HmmInput> pending = new LinkedList<HmmInput>();
|
||||
|
||||
static public boolean isAvailable() {
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
public void initialize( final int READ_MAX_LENGTH, final int HAPLOTYPE_MAX_LENGTH ) {
|
||||
if (!loaded) {
|
||||
// System.loadLibrary("gmvhdl_gatk_hmm");
|
||||
// initFpga();
|
||||
loaded = true;
|
||||
}
|
||||
System.out.println("FPGA HMM Initialized");
|
||||
}
|
||||
|
||||
public void batchAdd(final List<Haplotype> haplotypes,
|
||||
|
|
|
|||
Loading…
Reference in New Issue