Skip to content
Snippets Groups Projects
Unverified Commit 68c56c9f authored by Cats's avatar Cats Committed by GitHub
Browse files

Merge pull request #292 from biowdl/famm-run

Famm run
parents bc1bacf1 48f0c3eb
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,7 @@ that users understand how the changes affect the new version.
-->
version 5.0.1
---------------------------
+ Smoove: enable genotyping
+ add runtime memory to number of tasks.
version 5.0.0
......
......@@ -43,7 +43,7 @@ task Annotate {
File? regionsFile
File? renameChrs
File? samplesFile
Int threads = 0
String memory = "256M"
Int timeMinutes = 1 + ceil(size(inputFile, "G"))
......@@ -53,7 +53,7 @@ task Annotate {
Boolean compressed = basename(outputPath) != basename(outputPath, ".gz")
command {
set -e
set -e
mkdir -p "$(dirname ~{outputPath})"
bcftools annotate \
-o ~{outputPath} \
......@@ -154,7 +154,7 @@ task Sort {
File outputVcf = outputPath
File? outputVcfIndex = outputPath + ".tbi"
}
runtime {
memory: memory
time_minutes: timeMinutes
......
......@@ -41,11 +41,13 @@ task Call {
--outdir ~{outputDir} \
--name ~{sample} \
--fasta ~{referenceFasta} \
--removepr \
--genotype \
~{bamFile}
}
output {
File smooveVcf = outputDir + "/" + sample + "-smoove.vcf.gz"
File smooveVcf = outputDir + "/" + sample + "-smoove.genotyped.vcf.gz"
}
runtime {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment