Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update WDL comments to reflect minimap2 option #110

Merged
merged 2 commits into from
Jun 10, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pipes/WDL/tasks/tasks_assembly.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ task ivar_trim {

task align_reads {
meta {
description: "Align unmapped reads to a reference genome, either using novoalign (default) or bwa. Produces an aligned bam file (including all unmapped reads), an aligned-only bam file, both sorted and indexed, along with samtools flagstat output, fastqc stats (on mapped only reads), and some basic figures of merit."
description: "Align unmapped reads to a reference genome, either using novoalign (default), minimap2, or bwa. Produces an aligned bam file (including all unmapped reads), an aligned-only bam file, both sorted and indexed, along with samtools flagstat output, fastqc stats (on mapped only reads), and some basic figures of merit."
}

input {
Expand All @@ -251,7 +251,7 @@ task align_reads {

File? novocraft_license

String? aligner="novoalign" # novoalign or bwa
String? aligner="novoalign"
String? aligner_options
Boolean? skip_mark_dupes=false

Expand All @@ -261,7 +261,7 @@ task align_reads {
}

parameter_meta {
aligner: { description: "Short read aligner to use: novoalign or bwa. (Default: novoalign)" }
aligner: { description: "Short read aligner to use: novoalign, minimap2, or bwa. (Default: novoalign)" }
}

command {
Expand Down