Skip to content

Commit 3fdc28d

Browse files
committed
Retab certain fastx tools, remove duplicate macro imports
1 parent 0024992 commit 3fdc28d

File tree

3 files changed

+31
-37
lines changed

3 files changed

+31
-37
lines changed

tool_collections/fastx_toolkit/fasta_clipping_histogram/fasta_clipping_histogram.xml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44
<macros>
55
<import>fastx_macros.xml</import>
66
</macros>
7-
<macros>
8-
<import>fastx_macros.xml</import>
9-
</macros>
107
<command><![CDATA[
118
command -v perl5.22.0 &&
129
perl5.22.0 `command -v fasta_clipping_histogram.pl` '$input' '$outfile' ||

tool_collections/fastx_toolkit/fastq_quality_boxplot/fastq_quality_boxplot.xml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
<tool id="cshl_fastq_quality_boxplot" name="Draw quality score boxplot" version="@VERSION@">
2-
<description></description>
2+
<description></description>
33
<expand macro="requirements" />
44
<macros>
55
<import>fastx_macros.xml</import>
66
</macros>
7-
<command>
8-
fastq_quality_boxplot_graph.sh -t '$input.name' -i '$input' -o '$output'
9-
</command>
10-
<inputs>
11-
<param format="txt" name="input" type="data" label="Statistics report file" help="output of 'FASTQ Statistics' tool" />
12-
</inputs>
13-
14-
<outputs>
15-
<data format="png" name="output" metadata_source="input" />
16-
</outputs>
17-
<tests>
18-
<test>
19-
<param name="input" value="fastq_stats1.out" ftype="txt"></param>
20-
<output name="output" file="quality_boxplot_out.png"></output>
21-
</test>
22-
</tests>
7+
<command>
8+
fastq_quality_boxplot_graph.sh -t '$input.name' -i '$input' -o '$output'
9+
</command>
10+
<inputs>
11+
<param format="txt" name="input" type="data" label="Statistics report file" help="output of 'FASTQ Statistics' tool" />
12+
</inputs>
13+
14+
<outputs>
15+
<data format="png" name="output" metadata_source="input" />
16+
</outputs>
17+
<tests>
18+
<test>
19+
<param name="input" value="fastq_stats1.out" ftype="txt"></param>
20+
<output name="output" file="quality_boxplot_out.png"></output>
21+
</test>
22+
</tests>
2323
<help>
2424

2525
**What it does**

tool_collections/fastx_toolkit/fastx_nucleotides_distribution/fastx_nucleotides_distribution.xml

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,22 @@
11
<tool id="cshl_fastx_nucleotides_distribution" version="@VERSION@" name="Draw nucleotides distribution chart">
2-
<description></description>
2+
<description></description>
33
<expand macro="requirements" />
44
<macros>
55
<import>fastx_macros.xml</import>
66
</macros>
7-
<macros>
8-
<import>fastx_macros.xml</import>
9-
</macros>
10-
<command detect_errors="aggressive">fastx_nucleotide_distribution_graph.sh -t '$input.name' -i $input -o $output</command>
11-
<inputs>
12-
<param format="txt" name="input" type="data" label="Statistics Text File" help="output of 'FASTX Statistics' tool" />
13-
</inputs>
14-
<outputs>
15-
<data format="png" name="output" metadata_source="input" />
16-
</outputs>
17-
<tests>
18-
<test>
19-
<param name="input" value="fastq_stats1.out" ftype="txt" />
20-
<output name="output" file="fastx_nt_distribution.png" compare="sim_size"/>
21-
</test>
22-
</tests>
7+
<command detect_errors="aggressive">fastx_nucleotide_distribution_graph.sh -t '$input.name' -i '$input' -o '$output'</command>
8+
<inputs>
9+
<param format="txt" name="input" type="data" label="Statistics Text File" help="output of 'FASTX Statistics' tool" />
10+
</inputs>
11+
<outputs>
12+
<data format="png" name="output" metadata_source="input" />
13+
</outputs>
14+
<tests>
15+
<test>
16+
<param name="input" value="fastq_stats1.out" ftype="txt" />
17+
<output name="output" file="fastx_nt_distribution.png" compare="sim_size"/>
18+
</test>
19+
</tests>
2320
<help>
2421

2522
**What it does**

0 commit comments

Comments
 (0)