congrats Icon
New! Announcing our next generation AI code completions
Read here
Tabnine Logo
IntelDeflaterFactory
Code IndexAdd Tabnine to your IDE (free)

How to use
IntelDeflaterFactory
in
com.intel.gkl.compression

Best Java code snippets using com.intel.gkl.compression.IntelDeflaterFactory (Showing top 6 results out of 315)

origin: HadoopGenomics/Hadoop-BAM

 static DeflaterFactory newDeflaterFactory() {
  return new IntelDeflaterFactory();
 }
}
origin: broadgsa/gatk

public void initializeCompressionAndDecompression() {
  // Use the Intel Inflater/Deflater for accelerated BAM reading/writing, if possible:
  if (! getArguments().useJdkDeflater) {
    BlockCompressedOutputStream.setDefaultDeflaterFactory(new IntelDeflaterFactory());
  }
  if (! getArguments().useJdkInflater) {
    BlockGunzipper.setDefaultInflaterFactory(new IntelInflaterFactory());
  }
  final boolean usingIntelDeflater = (BlockCompressedOutputStream.getDefaultDeflaterFactory() instanceof IntelDeflaterFactory && ((IntelDeflaterFactory)BlockCompressedOutputStream.getDefaultDeflaterFactory()).usingIntelDeflater());
  logger.info("Deflater: " + (usingIntelDeflater ? "IntelDeflater": "JdkDeflater"));
  final boolean usingIntelInflater = (BlockGunzipper.getDefaultInflaterFactory() instanceof IntelInflaterFactory && ((IntelInflaterFactory)BlockGunzipper.getDefaultInflaterFactory()).usingIntelInflater());
  logger.info("Inflater: " + (usingIntelInflater ? "IntelInflater": "JdkInflater"));
}
origin: mozack/abra2

  IntelDeflaterFactory intelDeflater = new IntelDeflaterFactory();
  writerFactory.setDeflaterFactory(intelDeflater);
  Logger.info("Using intel deflator: " + intelDeflater.usingIntelDeflater());
} else {
  Logger.info("Intel deflater disabled");
origin: broadinstitute/picard

BlockCompressedOutputStream.setDefaultDeflaterFactory(new IntelDeflaterFactory());
      ((IntelDeflaterFactory)BlockCompressedOutputStream.getDefaultDeflaterFactory()).usingIntelDeflater());
  final boolean usingIntelInflater = (BlockGunzipper.getDefaultInflaterFactory() instanceof IntelInflaterFactory &&
      ((IntelInflaterFactory)BlockGunzipper.getDefaultInflaterFactory()).usingIntelInflater());
origin: org.seqdoop/hadoop-bam

 static DeflaterFactory newDeflaterFactory() {
  return new IntelDeflaterFactory();
 }
}
origin: com.github.broadinstitute/picard

BlockCompressedOutputStream.setDefaultDeflaterFactory(new IntelDeflaterFactory());
      ((IntelDeflaterFactory)BlockCompressedOutputStream.getDefaultDeflaterFactory()).usingIntelDeflater());
  final boolean usingIntelInflater = (BlockGunzipper.getDefaultInflaterFactory() instanceof IntelInflaterFactory &&
      ((IntelInflaterFactory)BlockGunzipper.getDefaultInflaterFactory()).usingIntelInflater());
com.intel.gkl.compressionIntelDeflaterFactory

Javadoc

Provides an IntelDeflater object using the DeflaterFactory API defined in HTSJDK

Most used methods

  • <init>
  • usingIntelDeflater

Popular in Java

  • Making http post requests using okhttp
  • addToBackStack (FragmentTransaction)
  • onRequestPermissionsResult (Fragment)
  • getSystemService (Context)
  • IOException (java.io)
    Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • XPath (javax.xml.xpath)
    XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now