Mercurial > repos > devteam > fasta_concatenate_by_species
annotate fasta_concatenate_by_species.xml @ 3:49e91b42881b draft default tip
"planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_concatenate_by_species commit 34a6c9f94a5722bb7d2f887618aafa410a770e91"
author | devteam |
---|---|
date | Mon, 02 Mar 2020 11:46:08 +0000 |
parents | c5311b7718d1 |
children |
rev | line source |
---|---|
2
c5311b7718d1
"planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_concatenate_by_species commit cd1ed08574b749eee2a3f6e6151dbb0c8ca15bbf"
devteam
parents:
1
diff
changeset
|
1 <tool id="fasta_concatenate0" name="Concatenate" version="0.0.1" profile="16.04"> |
0 | 2 <description>FASTA alignment by species</description> |
1
d9f0a11824e9
Add bx-python dependency (for maf_utilities.py).
Nate Coraor <nate@bx.psu.edu>
parents:
0
diff
changeset
|
3 <requirements> |
2
c5311b7718d1
"planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_concatenate_by_species commit cd1ed08574b749eee2a3f6e6151dbb0c8ca15bbf"
devteam
parents:
1
diff
changeset
|
4 <requirement type="package" version="0.8.8">bx-python</requirement> |
1
d9f0a11824e9
Add bx-python dependency (for maf_utilities.py).
Nate Coraor <nate@bx.psu.edu>
parents:
0
diff
changeset
|
5 </requirements> |
2
c5311b7718d1
"planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_concatenate_by_species commit cd1ed08574b749eee2a3f6e6151dbb0c8ca15bbf"
devteam
parents:
1
diff
changeset
|
6 <command> |
c5311b7718d1
"planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_concatenate_by_species commit cd1ed08574b749eee2a3f6e6151dbb0c8ca15bbf"
devteam
parents:
1
diff
changeset
|
7 python '$__tool_directory__/fasta_concatenate_by_species.py' |
c5311b7718d1
"planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_concatenate_by_species commit cd1ed08574b749eee2a3f6e6151dbb0c8ca15bbf"
devteam
parents:
1
diff
changeset
|
8 '$input1' |
c5311b7718d1
"planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_concatenate_by_species commit cd1ed08574b749eee2a3f6e6151dbb0c8ca15bbf"
devteam
parents:
1
diff
changeset
|
9 '$out_file1' |
c5311b7718d1
"planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_concatenate_by_species commit cd1ed08574b749eee2a3f6e6151dbb0c8ca15bbf"
devteam
parents:
1
diff
changeset
|
10 </command> |
0 | 11 <inputs> |
12 <param name="input1" type="data" format="fasta" label="FASTA alignment"/> | |
13 </inputs> | |
14 <outputs> | |
15 <data name="out_file1" format="fasta"/> | |
16 </outputs> | |
17 <tests> | |
18 <test> | |
19 <param name="input1" value="cf_maf2fasta.dat" /> | |
20 <output name="out_file1" file="fasta_concatenate_out.fasta" /> | |
21 </test> | |
22 </tests> | |
2
c5311b7718d1
"planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_concatenate_by_species commit cd1ed08574b749eee2a3f6e6151dbb0c8ca15bbf"
devteam
parents:
1
diff
changeset
|
23 <help><![CDATA[ |
0 | 24 |
25 **What it does** | |
26 | |
27 This tools attempts to parse FASTA headers to determine the species for each sequence in a multiple FASTA alignment. | |
28 It then linearly concatenates the sequences for each species in the file, creating one sequence per determined species. | |
29 | |
30 ------- | |
31 | |
32 **Example** | |
33 | |
34 Starting FASTA:: | |
35 | |
36 >hg18.chr1(+):10016339-10016341|hg18_0 | |
37 GT | |
38 >panTro2.chr1(+):10195380-10195382|panTro2_0 | |
39 GT | |
40 >rheMac2.chr1(+):13119747-13119749|rheMac2_0 | |
41 GT | |
42 >mm8.chr4(-):148269679-148269681|mm8_0 | |
43 GT | |
44 >canFam2.chr5(+):66213635-66213637|canFam2_0 | |
45 GT | |
46 | |
47 >hg18.chr1(-):100323677-100323679|hg18_1 | |
48 GT | |
49 >panTro2.chr1(-):101678671-101678673|panTro2_1 | |
50 GT | |
51 >rheMac2.chr1(-):103154011-103154013|rheMac2_1 | |
52 GT | |
53 >mm8.chr3(+):116620616-116620618|mm8_1 | |
54 GT | |
55 >canFam2.chr6(+):52954092-52954094|canFam2_1 | |
56 GT | |
57 | |
58 | |
59 | |
60 becomes:: | |
61 | |
62 >hg18 | |
63 GTGT | |
64 >panTro2 | |
65 GTGT | |
66 >rheMac2 | |
67 GTGT | |
68 >mm8 | |
69 GTGT | |
70 >canFam2 | |
71 GTGT | |
72 | |
73 | |
74 .. class:: warningmark | |
75 | |
76 This tool will only work properly on files with Galaxy style FASTA headers. | |
77 | |
2
c5311b7718d1
"planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tools/fasta_concatenate_by_species commit cd1ed08574b749eee2a3f6e6151dbb0c8ca15bbf"
devteam
parents:
1
diff
changeset
|
78 ]]></help> |
1
d9f0a11824e9
Add bx-python dependency (for maf_utilities.py).
Nate Coraor <nate@bx.psu.edu>
parents:
0
diff
changeset
|
79 </tool> |