annotate snp_to_bed.xml @ 2:8220dba15923
draft default tip
drop of first row removed
author |
brigidar |
date |
Mon, 28 Dec 2015 12:51:23 -0500 |
parents |
c5195904b225 |
children |
|
rev |
line source |
1
|
1 <tool id="snp_to_bed" name="snp location to bed format" version="0.3">
|
|
2 <description>convert SNP to interval</description>
|
0
|
3 <command>
|
2
|
4 cat $input1| awk -F "\t" -v OFS="\t" '{print $1, $2-1, $2}'>> $out_file1 </command>
|
0
|
5 <inputs>
|
|
6 <param name="input1" type="data" label="input file"/>
|
|
7 </inputs>
|
|
8 <outputs>
|
1
|
9 <data name="out_file1" format="bed" metadata_source="input1"/>
|
0
|
10 </outputs>
|
|
11 <tests>
|
|
12 </tests>
|
|
13 <help>
|
|
14 </help>
|
|
15 </tool>
|