Codota Logo
PipelineJobFactory.createJob
Code IndexAdd Codota to your IDE (free)

How to use
createJob
method
in
edu.unc.mapseq.pipeline.PipelineJobFactory

Best Java code snippets using edu.unc.mapseq.pipeline.PipelineJobFactory.createJob (Showing top 6 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
LocalDateTime l =
  • Codota Iconnew LocalDateTime()
  • Codota IconLocalDateTime.now()
  • Codota IconDateTimeFormatter formatter;String text;formatter.parseLocalDateTime(text)
  • Smart code suggestions by Codota
}
origin: edu.unc.mapseq/mapseq-pipeline-api

public static CondorJob createJob(int count, Class<?> moduleClass, WorkflowPlan workflowPlan, HTSFSample htsfSample) {
  return createJob(count, moduleClass, workflowPlan, htsfSample, true);
}
origin: edu.unc.mapseq/mapseq-pipeline-api

public static CondorJob createJob(int count, Class<?> moduleClass, WorkflowPlan workflowPlan,
    HTSFSample htsfSample, boolean persistFileData) {
  return createJob(count, moduleClass, workflowPlan, htsfSample, persistFileData, 3);
}
origin: edu.unc.mapseq/mapseq-pipeline-api

public static CondorJob createJob(int count, Class<?> moduleClass, WorkflowPlan workflowPlan) {
  return createJob(count, moduleClass, workflowPlan, null);
}
origin: edu.unc.mapseq.pipelines.fastq-trim-and-qc/fastq-trim-and-qc-workflow

CondorJob randomSampleFastqJob = PipelineJobFactory.createJob(++count, RandomSampleFastqCLI.class,
    getWorkflowPlan(), htsfSample);
randomSampleFastqJob.addArgument(RandomSampleFastqCLI.FASTQ, trimmedFastq.getAbsolutePath());
  CondorJob bwaAlignJob = PipelineJobFactory.createJob(++count, BWAAlignCLI.class, getWorkflowPlan(),
      htsfSample);
  bwaAlignJob.setNumberOfProcessors(8);
  CondorJob bwaSAMSingleEndJob = PipelineJobFactory.createJob(++count, BWASAMSingleEndCLI.class,
      getWorkflowPlan(), htsfSample);
  bwaSAMSingleEndJob.addArgument(BWASAMSingleEndCLI.FASTADB, sequenceFastaDB);
  CondorJob genomeSampleQCJob = PipelineJobFactory.createJob(++count, GenomeSampleQCCLI.class,
      getWorkflowPlan(), htsfSample);
  genomeSampleQCJob.addArgument(GenomeSampleQCCLI.KEY, key);
  CondorJob rnaSampleQCJob = PipelineJobFactory.createJob(++count, RNASampleQCCLI.class,
      getWorkflowPlan(), htsfSample);
  rnaSampleQCJob.addArgument(RNASampleQCCLI.KEY, key);
origin: edu.unc.mapseq.pipelines.fastq-trim-and-qc/fastq-trim-and-qc-workflow

CondorJob fastxQualityStatsJob = PipelineJobFactory.createJob(++count, FastxQualityStatsCLI.class,
    getWorkflowPlan(), htsfSample);
fastxQualityStatsJob.addArgument(FastxQualityStatsCLI.INFILE, fastqFile.getAbsolutePath());
CondorJob perBaseStatJob = PipelineJobFactory.createJob(++count, PerBaseStatCLI.class,
    getWorkflowPlan(), htsfSample);
perBaseStatJob.addArgument(PerBaseStatCLI.INFILE, fastxQualityStatsOutFile.getAbsolutePath());
CondorJob sequenceReadQualityFilter = PipelineJobFactory.createJob(++count,
    SequenceReadQualityFilterCLI.class, getWorkflowPlan(), htsfSample);
sequenceReadQualityFilter.addArgument(SequenceReadQualityFilterCLI.INFILE,
CondorJob bcTrendJob = PipelineJobFactory.createJob(++count, BCTrendCLI.class, getWorkflowPlan(),
    htsfSample);
bcTrendJob.addArgument(BCTrendCLI.INFILE, fastxQualityStatsOutFile.getAbsolutePath());
CondorJob trimCountAdapterR1Job = PipelineJobFactory.createJob(++count, TrimCountAdapterCLI.class,
    getWorkflowPlan(), htsfSample);
trimCountAdapterR1Job.addArgument(TrimCountAdapterCLI.INFASTQ, r1FastqFile.getAbsolutePath());
CondorJob bwaAlignR1Job = PipelineJobFactory.createJob(++count, BWAAlignCLI.class,
    getWorkflowPlan(), htsfSample);
bwaAlignR1Job.addArgument(BWAAlignCLI.THREADS, "4");
CondorJob trimCountAdapterR2Job = PipelineJobFactory.createJob(++count, TrimCountAdapterCLI.class,
    getWorkflowPlan(), htsfSample);
trimCountAdapterR2Job.addArgument(TrimCountAdapterCLI.INFASTQ, r2FastqFile.getAbsolutePath());
CondorJob bwaAlignR2Job = PipelineJobFactory.createJob(++count, BWAAlignCLI.class,
origin: edu.unc.mapseq.pipelines.demo-test/demo-test-workflow

CondorJob helloJob = PipelineJobFactory.createJob(++count, EchoCLI.class, getWorkflowPlan(), null, false);
CondorJob worldJob = PipelineJobFactory.createJob(++count, EchoCLI.class, getWorkflowPlan(), null, false);
CondorJob catJob = PipelineJobFactory.createJob(++count, CatCLI.class, getWorkflowPlan(), null, false);
edu.unc.mapseq.pipelinePipelineJobFactorycreateJob

Popular methods of PipelineJobFactory

    Popular in Java

    • Finding current android device location
    • setContentView (Activity)
    • setScale (BigDecimal)
      Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
    • scheduleAtFixedRate (Timer)
      Schedules the specified task for repeated fixed-rate execution, beginning after the specified delay.
    • Socket (java.net)
      Provides a client-side TCP socket.
    • NumberFormat (java.text)
      The abstract base class for all number formats. This class provides the interface for formatting and
    • SimpleDateFormat (java.text)
      Formats and parses dates in a locale-sensitive manner. Formatting turns a Date into a String, and pa
    • Calendar (java.util)
      Calendar is an abstract base class for converting between a Date object and a set of integer fields
    • Vector (java.util)
      The Vector class implements a growable array of objects. Like an array, it contains components that
    • Callable (java.util.concurrent)
      A task that returns a result and may throw an exception. Implementors define a single method with no
    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