Mercurial > repos > brigidar > sed_fasta
changeset 0:80f990fb3ba6 draft
Uploaded
author | brigidar |
---|---|
date | Tue, 06 Oct 2015 12:53:24 -0400 |
parents | |
children | 04871c6242d2 |
files | sed-fasta.xml |
diffstat | 1 files changed, 15 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sed-fasta.xml Tue Oct 06 12:53:24 2015 -0400 @@ -0,0 +1,15 @@ +<tool id="cat_list" name="remove leading characters in fasta downloaded from ncbi to match genbank locus tag"> + <description>tail-to-head</description> + <command> + cat $input1 | sed 's/gi.*gb\|//g' | sed 's/\|//g' >> $out_file1 </command> + <inputs> + <param name="input1" type="data" label="remove gi to gb characters" multiple="true" /> + </inputs> + <outputs> + <data name="out_file1" format="input" metadata_source="input1"/> + </outputs> + <tests> + </tests> + <help> + </help> +</tool>