Skip to content

Commit

Permalink
Add new mutserve version and introduce threads parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
seppinho committed Oct 2, 2020
1 parent 3b3eca4 commit 154147d
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 9 deletions.
31 changes: 22 additions & 9 deletions files/cloudgene.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,15 @@ description: A fast method to detect sample contamination in mtDNA and WGS data.
version: 1.2.1
workflow:

setups:
- name: Validate Input
jar: haplocheck.jar
classname: genepi.haplocheck.steps.InputValidation

steps:

- name: Variant Calling using mutserve (v2.0.0-rc4)
#if( $format == "bam" || $format == "cram")
- name: Variant Calling using mutserve (v2.0.0-rc7)
jar: mutserve.jar
params: call --level $level --reference $archive --mapQ $mapQ --baseQ $baseQ --deletions --output $files/out.vcf.gz --no-ansi $files
params: call --level $level --reference $archive --mapQ $mapQ --baseQ $baseQ --deletions --output $files/out.vcf.gz --no-ansi $files --threads $threads
runtime: java
stdout: true

#end
- name: Haplogroup Classification
jar: haplocheck.jar
classname: genepi.haplocheck.steps.HaplogrepStep
Expand Down Expand Up @@ -54,12 +50,22 @@ workflow:
visible: false
value: rCRS.fasta

- id: format
description: Input Format
type: list
required: true
values:
bam: BAM
cram: CRAM
vcf: VCF

- id: level
description: Level
type: number
visible: true
value: 0.01



- id: baseQ
description: Minimal Base Quality
type: number
Expand All @@ -72,6 +78,13 @@ workflow:
visible: true
value: 20

- id: threads
description: Threads for Variant Calling
type: number
visible: true
value: 1


outputs:


Expand Down
Binary file modified files/mutserve.jar
Binary file not shown.

0 comments on commit 154147d

Please sign in to comment.