mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 13:50:20 +08:00
More modifications to fastx toolkit: added fastqsanger to input format list and changed the ascii offset param to select.
This commit is contained in:
@@ -10,21 +10,21 @@
|
||||
</param>
|
||||
</inputs>
|
||||
|
||||
<!--
|
||||
Functional tests with param value starting with - fail.
|
||||
<tests>
|
||||
<test>
|
||||
<!-- DNA-to-RNA -->
|
||||
<param name="input" value="fasta_nuc_changer1.fasta" />
|
||||
<param name="mode" value="-r" />
|
||||
<output name="output" file="fasta_nuc_change1.out" />
|
||||
</test>
|
||||
<test>
|
||||
<!-- RNA-to-DNA -->
|
||||
<param name="input" value="fasta_nuc_changer2.fasta" />
|
||||
<param name="mode" value="-d" />
|
||||
<output name="output" file="fasta_nuc_change2.out" />
|
||||
</test>
|
||||
</tests>
|
||||
|
||||
-->
|
||||
|
||||
<outputs>
|
||||
<data format="input" name="output" metadata_source="input" />
|
||||
|
||||
@@ -2,15 +2,18 @@
|
||||
<description>(ASCII-Numeric)</description>
|
||||
<command>zcat -f $input | fastq_quality_converter $QUAL_FORMAT -o $output -Q $offset</command>
|
||||
<inputs>
|
||||
<param format="fastqsolexa" name="input" type="data" label="Library to convert" />
|
||||
<param format="fastqsolexa,fastqsanger" name="input" type="data" label="Library to convert" />
|
||||
|
||||
<param name="QUAL_FORMAT" type="select" label="Desired output format">
|
||||
<option value="-a">ASCII (letters) quality scores</option>
|
||||
<option value="-n">Numeric quality scores</option>
|
||||
</param>
|
||||
|
||||
<param name="offset" size="4" type="integer" value="33" label="FASTQ ASCII offset" />
|
||||
</inputs>
|
||||
<param name="offset" type="select" label="FASTQ ASCII offset">
|
||||
<option value="33">33</option>
|
||||
<option value="64">64</option>
|
||||
</param>
|
||||
</inputs>
|
||||
|
||||
<tests>
|
||||
<test>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<command>zcat -f '$input' | fastq_quality_filter -q $quality -p $percent -v -o $output</command>
|
||||
|
||||
<inputs>
|
||||
<param format="fastqsolexa" name="input" type="data" label="Library to filter" />
|
||||
<param format="fastqsolexa,fastqsanger" name="input" type="data" label="Library to filter" />
|
||||
|
||||
<param name="quality" size="4" type="integer" value="20">
|
||||
<label>Quality cut-off value</label>
|
||||
|
||||
@@ -3,8 +3,11 @@
|
||||
<command>zcat -f $input | fastx_quality_stats -o $output -Q $offset</command>
|
||||
|
||||
<inputs>
|
||||
<param format="fasta,fastqsolexa" name="input" type="data" label="Library to analyse" />
|
||||
<param name="offset" size="4" type="integer" value="33" label="FASTQ ASCII offset" />
|
||||
<param format="fasta,fastqsolexa,fastqsanger" name="input" type="data" label="Library to analyse" />
|
||||
<param name="offset" type="select" label="FASTQ ASCII offset">
|
||||
<option value="33">33</option>
|
||||
<option value="64">64</option>
|
||||
</param>
|
||||
</inputs>
|
||||
|
||||
<tests>
|
||||
|
||||
Reference in New Issue
Block a user