-
Notifications
You must be signed in to change notification settings - Fork 439
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6499 from RZ9082/fastp
Fastp - Format_source to ensure WF usability and remove non-sanger input formats
- Loading branch information
Showing
2 changed files
with
35 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,11 +61,28 @@ | |
</xml> | ||
|
||
<xml name="in" token_read_number="1" token_argument="-i"> | ||
<param name="in@READ_NUMBER@" argument="@ARGUMENT@" type="data" format="fastqsanger,fastqsanger.gz,fastqillumina,fastqillumina.gz" label="Input @READ_NUMBER@" help="Input FASTQ file #@READ_NUMBER@"/> | ||
<param name="in@READ_NUMBER@" argument="@ARGUMENT@" type="data" format="fastqsanger,fastqsanger.gz" label="Input @READ_NUMBER@" help="Input FASTQ file #@READ_NUMBER@"/> | ||
</xml> | ||
|
||
<xml name="poly_g_min_len"> | ||
<param argument="--poly_g_min_len" type="integer" optional="true" label="PolyG minimum length" | ||
help="The minimum length to detect polyG in the read tail. 10 by default."/> | ||
</xml> | ||
</macros> | ||
|
||
<xml name="format_actions" token_read_number="1" token_forward_reverse="forward"> | ||
<actions> | ||
<conditional name="single_paired.single_paired_selector"> | ||
<when value="paired"> | ||
<action type="format"> | ||
<option type="from_param" name="single_paired.in@READ_NUMBER@" param_attribute="ext" /> | ||
</action> | ||
</when> | ||
<when value="paired_collection"> | ||
<action type="format"> | ||
<option type="from_param" name="single_paired.paired_input" param_attribute="@[email protected]" /> | ||
</action> | ||
</when> | ||
</conditional> | ||
</actions> | ||
</xml> | ||
</macros> |