Mercurial > repos > iuc > umi_tools_dedup
diff macros.xml @ 16:c5a2ee07c4e1 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/umi_tools commit bc1b362f6783d3fc0ed0f42c14687001d7ff5f7a
| author | iuc |
|---|---|
| date | Sat, 05 Oct 2024 13:08:04 +0000 |
| parents | 04e09969d376 |
| children | 9cd1c2f5d90e |
line wrap: on
line diff
--- a/macros.xml Sat Sep 28 16:40:30 2024 +0000 +++ b/macros.xml Sat Oct 05 13:08:04 2024 +0000 @@ -4,8 +4,8 @@ <!-- macros applying to all umi_tools --> <token name="@TOOL_VERSION@">1.1.5</token> - <token name="@VERSION_SUFFIX@">0</token> - <token name="@PROFILE@">21.01</token> + <token name="@VERSION_SUFFIX@">1</token> + <token name="@PROFILE@">23.1</token> <xml name="requirements"> <requirements> <requirement type="package" version="@TOOL_VERSION@">umi_tools</requirement> @@ -104,8 +104,8 @@ <expand macro="barcode1_macro"/> </when> <when value="paired"> - <param name="input_read1" type="data" format="@FASTQ_FORMATS@" label="Reads in FASTQ format" /> - <param name="input_read2" type="data" format="@FASTQ_FORMATS@" label="Reads in FASTQ format" /> + <param name="input_read1" type="data" format="@FASTQ_FORMATS@" label="Forward reads in FASTQ format" /> + <param name="input_read2" type="data" format="@FASTQ_FORMATS@" label="Reverse reads in FASTQ format" /> <expand macro="barcode1_macro"/> <expand macro="barcode2_macro"/> <yield/> @@ -152,11 +152,11 @@ <token name="@LINK_SAM_BAM_INPUT@"><![CDATA[ #if $input.is_of_type("sam"): - ## TODO dedup has problems with SAM input in some cases + ## sam input is not supported for paired data ## https://github.com/CGATOxford/UMI-tools/issues/483 - ## so convert it to sorted BAM for now + ## so convert it to sorted BAM ## #set $input_file = $input - samtools sort --no-PG '$input' > 'input.bam' && + samtools sort --no-PG '$input' -O BAM > 'input.bam' && samtools index -b 'input.bam' && #set $input_file = 'input.bam' #else: @@ -166,7 +166,7 @@ #end if ]]></token> <token name="@SET_INPUT_TYPE@"><