Codota Logo
IntelDeflaterFactory
Code IndexAdd Codota 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)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Gson g =
  • Codota Iconnew Gson()
  • Codota IconGsonBuilder gsonBuilder;gsonBuilder.create()
  • Codota Iconnew GsonBuilder().create()
  • Smart code suggestions by Codota
}
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 requests using okhttp
  • scheduleAtFixedRate (Timer)
  • startActivity (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
    Creates and executes a periodic action that becomes enabled first after the given initial delay, and
  • Socket (java.net)
    Provides a client-side TCP socket.
  • KeyStore (java.security)
    This class represents an in-memory collection of keys and certificates. It manages two types of entr
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • JTextField (javax.swing)
  • LogFactory (org.apache.commons.logging)
    A minimal incarnation of Apache Commons Logging's LogFactory API, providing just the common Log look
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.This exception may include information for locating the er
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now