Mercurial > repos > brigidar > sed_fasta
annotate sed-fasta.xml @ 1:04871c6242d2 draft default tip
Uploaded
author | brigidar |
---|---|
date | Tue, 06 Oct 2015 13:05:50 -0400 |
parents | 80f990fb3ba6 |
children |
rev | line source |
---|---|
1 | 1 <tool id="sed_fasta" name="remove leading characters in fasta downloaded from ncbi to match genbank locus tag" version="0.2"> |
2 <description>remove leading characters fasta file</description> | |
0 | 3 <command> |
1 | 4 cat $input1 | sed 's/gi.*gb[|]//g' | sed 's/[|]//g' >> $out_file1 </command> |
0 | 5 <inputs> |
1 | 6 <param name="input1" type="data" label="remove gi to gb characters" /> |
0 | 7 </inputs> |
8 <outputs> | |
9 <data name="out_file1" format="input" metadata_source="input1"/> | |
10 </outputs> | |
11 <tests> | |
12 </tests> | |
13 <help> | |
14 </help> | |
15 </tool> |