Skip to content

Instantly share code, notes, and snippets.

@EvanTheB
Created April 9, 2018 06:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EvanTheB/64c84a0aeaee39c1ed3e18b2952bcfe2 to your computer and use it in GitHub Desktop.
Save EvanTheB/64c84a0aeaee39c1ed3e18b2952bcfe2 to your computer and use it in GitHub Desktop.
task bwa_mem_tool {
Int threads
Int min_seed_length
Int min_std_max_min
command {
echo ${threads} ${min_seed_length} ${sep=',' min_std_max_min+} > output.sam
}
output {
File sam = "output.sam"
}
}
workflow main {
call bwa_mem_tool {input:
min_std_max_min=15,
threads=14,
min_seed_length=13
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment