org.broadinstitute.gatk.nativebindings.pairhmm.PairHMMNativeArguments Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gatk-native-bindings Show documentation
Show all versions of gatk-native-bindings Show documentation
Bindings for native libraries to implement to be compatible with GATK4
The newest version!
package org.broadinstitute.gatk.nativebindings.pairhmm;
/**
* Struct used to pass arguments to the PairHMM computation.
*/
public class PairHMMNativeArguments {
/**
* The maximum number of threads to use in the PairHMM computation.
*/
public int maxNumberOfThreads;
/**
* True if the PairHMM calculations should use double precision floating-point arithmetic, false otherwise.
*/
public boolean useDoublePrecision;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy