annotate seqkit_fx2tab.xml @ 12:bfeec7371833 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 4b34a4e0d3a8482acd3c0773a79658ec6add3fb3
author iuc
date Wed, 20 Aug 2025 15:05:33 +0000
parents b91a71153b2f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
1 <tool id="seqkit_fx2tab" name="SeqKit fx2tab" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@">
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
2 <description>convert FASTA/Q to tabular</description>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
3 <macros>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
4 <import>macros.xml</import>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
5 </macros>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
6 <expand macro="bio_tools"/>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
7 <expand macro="requirements"/>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
8 <command detect_errors="exit_code"><![CDATA[
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
9 #import re
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
10
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
11 #set input_identifier = re.sub('[^\s\w\-]', '_', str($input.element_identifier))
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
12 ln -s '${input}' '${input_identifier}' &&
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
13
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
14 seqkit fx2tab
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
15 '${input_identifier}'
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
16 $alphabet
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
17 $avg_qual
11
b91a71153b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 10a55aa92dba7af64cfa0a308191722655a9fba9
iuc
parents: 10
diff changeset
18 #if str($B) != 'None'
b91a71153b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 10a55aa92dba7af64cfa0a308191722655a9fba9
iuc
parents: 10
diff changeset
19 -B ${ str($B).replace(",","") }
b91a71153b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 10a55aa92dba7af64cfa0a308191722655a9fba9
iuc
parents: 10
diff changeset
20 #end if
b91a71153b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 10a55aa92dba7af64cfa0a308191722655a9fba9
iuc
parents: 10
diff changeset
21 #if str($C) != 'None'
b91a71153b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 10a55aa92dba7af64cfa0a308191722655a9fba9
iuc
parents: 10
diff changeset
22 -C ${ str($C).replace(",","") }
b91a71153b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 10a55aa92dba7af64cfa0a308191722655a9fba9
iuc
parents: 10
diff changeset
23 #end if
0
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
24 $gc
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
25 $gc_skew
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
26 $header_line
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
27 $length
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
28 $name
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
29 $no_qual
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
30 $only_id
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
31 #if str($input.ext) in ['fastqsanger', 'fastqsanger.gz']:
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
32 --qual-ascii-base 33
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
33 #end if
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
34 $seq_hash
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
35 > '$output'
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
36 ]]></command>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
37 <inputs>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
38 <param name="input" type="data" format="fasta,fasta.gz,fastqsanger,fastqsanger.gz" label="Input file"/>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
39 <param argument="--alphabet" type="boolean" truevalue="--alphabet" falsevalue="" checked="false" label="Output alphabet letters?"/>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
40 <param argument="--avg_qual" type="boolean" truevalue="--avg-qual" falsevalue="" checked="false" label="Output average quality of the read?"/>
11
b91a71153b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 10a55aa92dba7af64cfa0a308191722655a9fba9
iuc
parents: 10
diff changeset
41 <param argument="-B" type="select" multiple="true" label="Append a precentage column of the selected bases">
b91a71153b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 10a55aa92dba7af64cfa0a308191722655a9fba9
iuc
parents: 10
diff changeset
42 <option value="A"></option>
b91a71153b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 10a55aa92dba7af64cfa0a308191722655a9fba9
iuc
parents: 10
diff changeset
43 <option value="G"></option>
b91a71153b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 10a55aa92dba7af64cfa0a308191722655a9fba9
iuc
parents: 10
diff changeset
44 <option value="C"></option>
b91a71153b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 10a55aa92dba7af64cfa0a308191722655a9fba9
iuc
parents: 10
diff changeset
45 <option value="T"></option>
b91a71153b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 10a55aa92dba7af64cfa0a308191722655a9fba9
iuc
parents: 10
diff changeset
46 <option value="N"></option>
b91a71153b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 10a55aa92dba7af64cfa0a308191722655a9fba9
iuc
parents: 10
diff changeset
47 </param>
b91a71153b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 10a55aa92dba7af64cfa0a308191722655a9fba9
iuc
parents: 10
diff changeset
48 <param argument="-C" type="select" multiple="true" label="Append a count column of the selected bases">
b91a71153b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 10a55aa92dba7af64cfa0a308191722655a9fba9
iuc
parents: 10
diff changeset
49 <option value="A"></option>
b91a71153b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 10a55aa92dba7af64cfa0a308191722655a9fba9
iuc
parents: 10
diff changeset
50 <option value="G"></option>
b91a71153b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 10a55aa92dba7af64cfa0a308191722655a9fba9
iuc
parents: 10
diff changeset
51 <option value="C"></option>
b91a71153b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 10a55aa92dba7af64cfa0a308191722655a9fba9
iuc
parents: 10
diff changeset
52 <option value="T"></option>
b91a71153b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 10a55aa92dba7af64cfa0a308191722655a9fba9
iuc
parents: 10
diff changeset
53 <option value="N"></option>
b91a71153b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 10a55aa92dba7af64cfa0a308191722655a9fba9
iuc
parents: 10
diff changeset
54 </param>
0
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
55 <param argument="--gc" type="boolean" truevalue="--gc" falsevalue="" checked="false" label="Output GC content?"/>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
56 <param argument="--gc_skew" type="boolean" truevalue="--gc-skew" falsevalue="" checked="false" label="Output GC-Skew?"/>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
57 <param argument="--header_line" type="boolean" truevalue="--header-line" falsevalue="" checked="false" label="Output header line?"/>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
58 <param argument="--length" type="boolean" truevalue="--length" falsevalue="" checked="false" label="Output sequence length?"/>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
59 <param argument="--name" type="boolean" truevalue="--name" falsevalue="" checked="false" label="Output only names (no sequences and qualities)?"/>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
60 <param argument="--no_qual" type="boolean" truevalue="--no-qual" falsevalue="" checked="false" label="Eliminate qualities from output?"/>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
61 <param argument="--only_id" type="boolean" truevalue="--only-id" falsevalue="" checked="false" label="Output id instead of full head?"/>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
62 <param argument="--seq_hash" type="boolean" truevalue="--seq-hash" falsevalue="" checked="false" label="Output md5 hash of sequence?"/>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
63 </inputs>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
64 <outputs>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
65 <data name="output" format="tabular"/>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
66 </outputs>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
67 <tests>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
68 <test expect_num_outputs="1">
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
69 <param name="input" value="input1.fastq.gz" ftype="fastqsanger.gz"/>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
70 <output name="output" file="fx2tab_output1.tabular" ftype="tabular"/>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
71 </test>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
72 <test expect_num_outputs="1">
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
73 <param name="input" value="input1.fastq.gz" ftype="fastqsanger.gz"/>
10
654a2f089252 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 89cc1cb215aa5dc5ef6364bf13bbb1978367dce3
iuc
parents: 6
diff changeset
74 <param name="avg_qual" value="true"/>
654a2f089252 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 89cc1cb215aa5dc5ef6364bf13bbb1978367dce3
iuc
parents: 6
diff changeset
75 <param name="header_line" value="true"/>
654a2f089252 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 89cc1cb215aa5dc5ef6364bf13bbb1978367dce3
iuc
parents: 6
diff changeset
76 <param name="length" value="true"/>
654a2f089252 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 89cc1cb215aa5dc5ef6364bf13bbb1978367dce3
iuc
parents: 6
diff changeset
77 <param name="name" value="true"/>
654a2f089252 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 89cc1cb215aa5dc5ef6364bf13bbb1978367dce3
iuc
parents: 6
diff changeset
78 <param name="only_id" value="true"/>
0
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
79 <output name="output" file="fx2tab_output2.tabular" ftype="tabular"/>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
80 </test>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
81 <test expect_num_outputs="1">
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
82 <param name="input" value="input1.fasta.gz" ftype="fasta.gz"/>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
83 <output name="output" file="fx2tab_output3.tabular" ftype="tabular"/>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
84 </test>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
85 <test expect_num_outputs="1">
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
86 <param name="input" value="input1.fasta.gz" ftype="fasta.gz"/>
10
654a2f089252 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 89cc1cb215aa5dc5ef6364bf13bbb1978367dce3
iuc
parents: 6
diff changeset
87 <param name="alphabet" value="true"/>
654a2f089252 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 89cc1cb215aa5dc5ef6364bf13bbb1978367dce3
iuc
parents: 6
diff changeset
88 <param name="avg_qual" value="true"/>
11
b91a71153b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 10a55aa92dba7af64cfa0a308191722655a9fba9
iuc
parents: 10
diff changeset
89 <param name="B" value="A,T"/>
b91a71153b2f planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 10a55aa92dba7af64cfa0a308191722655a9fba9
iuc
parents: 10
diff changeset
90 <param name="C" value="A"/>
10
654a2f089252 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 89cc1cb215aa5dc5ef6364bf13bbb1978367dce3
iuc
parents: 6
diff changeset
91 <param name="gc" value="true"/>
654a2f089252 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 89cc1cb215aa5dc5ef6364bf13bbb1978367dce3
iuc
parents: 6
diff changeset
92 <param name="gc_skew" value="true"/>
654a2f089252 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 89cc1cb215aa5dc5ef6364bf13bbb1978367dce3
iuc
parents: 6
diff changeset
93 <param name="header_line" value="true"/>
654a2f089252 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 89cc1cb215aa5dc5ef6364bf13bbb1978367dce3
iuc
parents: 6
diff changeset
94 <param name="length" value="true"/>
654a2f089252 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 89cc1cb215aa5dc5ef6364bf13bbb1978367dce3
iuc
parents: 6
diff changeset
95 <param name="name" value="true"/>
654a2f089252 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 89cc1cb215aa5dc5ef6364bf13bbb1978367dce3
iuc
parents: 6
diff changeset
96 <param name="no_qual" value="true"/>
654a2f089252 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 89cc1cb215aa5dc5ef6364bf13bbb1978367dce3
iuc
parents: 6
diff changeset
97 <param name="only_id" value="true"/>
654a2f089252 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 89cc1cb215aa5dc5ef6364bf13bbb1978367dce3
iuc
parents: 6
diff changeset
98 <param name="seq_hash" value="true"/>
0
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
99 <output name="output" file="fx2tab_output4.tabular" ftype="tabular"/>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
100 </test>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
101 </tests>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
102 <help>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
103 **What it does**
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
104
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
105 Converts FASTA/Q to tabular format and adds columns for sequence length and GC content/GC skew. The output
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
106 consists of 3 columns; id, sequence and quality unless one of the options to output only names or to eliminate
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
107 qualities is selected or additional columns (e.g., md5 sequence hash) are requested.
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
108 </help>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
109 <expand macro="citations"/>
c1aa9a90b4c4 planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqkit commit 15c99d80da6739b94a911a2744b523a2112cc55c
iuc
parents:
diff changeset
110 </tool>