Mercurial > repos > nilesh > rseqc
comparison read_quality.xml @ 60:1421603cc95b draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/rseqc commit 1dfe55ca83685cadb0ce8f6ebbd8c13232376d1d
author | iuc |
---|---|
date | Sat, 26 Nov 2022 15:19:14 +0000 |
parents | dbedfc5f5a3c |
children | 5968573462fa |
comparison
equal
deleted
inserted
replaced
59:dbedfc5f5a3c | 60:1421603cc95b |
---|---|
1 <tool id="rseqc_read_quality" name="Read Quality" version="@TOOL_VERSION@"> | 1 <tool id="rseqc_read_quality" name="Read Quality" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@GALAXY_VERSION@"> |
2 <description>determines Phred quality score</description> | 2 <description>determines Phred quality score</description> |
3 <expand macro="bio_tools"/> | 3 <expand macro="bio_tools"/> |
4 <macros> | 4 <macros> |
5 <import>rseqc_macros.xml</import> | 5 <import>rseqc_macros.xml</import> |
6 </macros> | 6 </macros> |
8 <expand macro="requirements"> | 8 <expand macro="requirements"> |
9 <!-- | 9 <!-- |
10 Required due to conda solver bug: https://github.com/conda/conda/issues/6269 | 10 Required due to conda solver bug: https://github.com/conda/conda/issues/6269 |
11 See: https://github.com/galaxyproject/tools-iuc/pull/1578 for more info | 11 See: https://github.com/galaxyproject/tools-iuc/pull/1578 for more info |
12 --> | 12 --> |
13 <requirement type="package" version="3.4.1">r-base</requirement> | 13 <requirement type="package" version="4.2.2">r-base</requirement> |
14 </expand> | 14 </expand> |
15 | 15 |
16 <expand macro="stdio" /> | 16 <expand macro="stdio" /> |
17 | 17 |
18 <version_command><![CDATA[read_quality.py --version]]></version_command> | 18 <version_command><![CDATA[read_quality.py --version]]></version_command> |
19 | 19 |
20 <command><![CDATA[ | 20 <command><![CDATA[ |
21 @BAM_SAM_INPUTS@ | |
21 read_quality.py | 22 read_quality.py |
22 --input-file '${input}' | 23 --input-file 'input.${extension}' |
23 --out-prefix output | 24 --out-prefix output |
24 -r ${reduce} | 25 -r ${reduce} |
25 --mapq ${mapq} | 26 --mapq ${mapq} |
26 ]]> | 27 ]]> |
27 </command> | 28 </command> |