comparison fastq_trim_poly_at.xml @ 0:dcc82e999439 draft

"planemo upload for repository https://github.com/ebi-gene-expression-group/container-galaxy-sc-tertiary/tree/develop/tools/qc/fastq_utils commit 3922947623a7f343e3d0475e82b72bba75c794e7"
author ebi-gxa
date Tue, 15 Feb 2022 07:54:15 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:dcc82e999439
1 <tool id="fastq_trim_poly_at" name="FASTQ poly-A|T trimmer" profile="18.01" version="0.25.1+galaxy0">
2 <description>Trims poly-A stretches at the 3'-end and poly-T at 5'-end of each read, optionally discarding reads with a length below the given threshold.</description>
3 <requirements>
4 <requirement type="package" version="0.25.1">fastq_utils</requirement>
5 </requirements>
6 <command detect_errors="exit_code"><![CDATA[
7 fastq_trim_poly_at --file '$file' --outfile '$outfile'
8
9 #if '$min_poly_at_len':
10 --min_poly_at_len '$min_poly_at_len'
11 #end if
12
13 #if '$min_len':
14 --min_len '$min_len'
15 #end if
16 ]]></command>
17 <inputs>
18 <param name="file" label="Input file" argument="--file" type="data" format="fastqsanger.gz" optional="false" help="Fastq (optional gzipped) file name"/>
19 <param name="min_poly_at_len" label="Minimum Poly-AT Length" argument="--min_poly_at_len" optional="true" type="integer" min="0" help="Minimum length of poly-A|T sequence to remove"/>
20 <param name="min_len" label="Minimum Quality" optional="true" value="" argument="--min_qual" type="integer" help="Minimum read length"/>
21 </inputs>
22 <outputs>
23 <data label="${tool.name} on ${on_string}: Output file" name="outfile" format="fastqsanger.gz" />
24 </outputs>
25 <tests>
26 <test>
27 <param name="file" value="poly_at.fastq.gz"/>
28 <param name="min_poly_at_len" value="3"/>
29 <output name="outfile" file="poly_at_len3.fastq.gz" compare="sim_size" delta_frac="0.1"/>
30 </test>
31 </tests>
32 <help><![CDATA[
33 =======================================================
34 FASTQ poly-A|T trimmer (fastq_trim_poly_at)
35 =======================================================
36
37 Minimum Poly-AT Length - The terminal poly-A|T sequence
38 should be at least this long to be removed
39
40 Minimum Length - Reads with post-trimming length less
41 than this setting will be removed
42
43 ]]></help>
44 <citations>
45 <citation type="bibtex"><![CDATA[
46 @ARTICLE{Fonseca2017,
47 author = {Fonseca, N.},
48 title = {fastq_utils},
49 year = {2017},
50 publisher = {GitHub},
51 journal = {GitHub repository},
52 howpublished = {\url{https://github.com/nunofonseca/fastq_utils}},
53 commit = {c6cf3f954c5286e62fbe36bb9ffecd89d7823b07}
54 }]]></citation>
55 </citations>
56 </tool>