Mercurial > repos > iuc > seqtk
annotate seqtk_mutfa.xml @ 2:f73729b62b51 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqtk commit 2249d643284ee782d882cd200729a86a2c6bb744
author | iuc |
---|---|
date | Fri, 01 Jan 2016 14:49:42 -0500 |
parents | e0a0fd938de4 |
children | bc7d99f46a5d |
rev | line source |
---|---|
0 | 1 <?xml version="1.0"?> |
2 <tool id="seqtk_mutfa" name="seqtk_mutfa" version="@WRAPPER_VERSION@.0"> | |
3 <description>point mutate FASTA at specified positions</description> | |
4 <macros> | |
5 <import>macros.xml</import> | |
6 </macros> | |
7 <expand macro="requirements"/> | |
8 <expand macro="stdio"/> | |
9 <command><![CDATA[seqtk mutfa | |
10 $in_file $in_snp | |
11 > $default]]></command> | |
12 <inputs> | |
13 <expand macro="in_faq"/> | |
14 <param name="in_snp" type="data" format="tabular" label="Input SNP file"/> | |
15 </inputs> | |
16 <outputs> | |
17 <data format_source="in_file" hidden="false" name="default" label="Mutated $in_file.name"/> | |
18 </outputs> | |
19 <tests> | |
20 <test> | |
21 <param name="in_file" value="seqtk_mutfa.fa"/> | |
22 <param name="in_snp" value="seqtk_mutfa.snp"/> | |
23 <output name="default" file="seqtk_mutfa.out" ftype="fasta"/> | |
24 </test> | |
25 </tests> | |
26 <help><![CDATA[ | |
27 **What it does** | |
28 | |
29 the SNP inputs consist of 4 columns: chromosome, 1-based-pos, any, base-changed-to. | |
30 | |
31 :: | |
32 | |
33 # Input fasta | |
34 >test0 | |
35 ACTGACTGAA | |
36 | |
37 # Input SNP file | |
38 test0 1 . G | |
39 test0 4 . A | |
40 | |
41 This will effect the desired mutations in the output file | |
42 | |
43 :: | |
44 | |
45 # Output result | |
46 >test0 | |
47 GCTAACTGAA | |
48 | |
49 @ATTRIBUTION@ | |
50 ]]></help> | |
2
f73729b62b51
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqtk commit 2249d643284ee782d882cd200729a86a2c6bb744
iuc
parents:
0
diff
changeset
|
51 <expand macro="citation" /> |
0 | 52 </tool> |