comparison peptideGenomicCoordinate.xml @ 1:561b62936e2c draft

planemo upload
author pravs
date Mon, 09 Apr 2018 16:53:05 -0400
parents
children 1b61f7aafb61
comparison
equal deleted inserted replaced
0:58c4333afe1f 1:561b62936e2c
1 <tool id="peptidegenomiccoordinate" name="Peptide Genomic Coordinate" version="0.1.1">
2 <description>Get genomic location/coordinate of peptides using mzsqlite DB and genomic mapping sqlite DB</description>
3 <requirements>
4 <requirement type="package" version="2.7.9">python</requirement>
5 </requirements>
6 <command detect_errors="aggressive"><![CDATA[
7 python '$__tool_directory__/peptideGenomicCoordinate.py' '$peptideinput' '$mzsqlite' '$mapping' '$peptide_bed'
8 ]]></command>
9 <inputs>
10 <param type="data" name="peptideinput" format="tabular" label="Peptide List (without any header line)"/>
11 <param type="data" name="mzsqlite" format="sqlite" label="mz to sqlite (mzsqlite) file"/>
12 <param type="data" name="mapping" format="sqlite" label="genomic mapping sqlite file"/>
13 </inputs>
14 <outputs>
15 <data format="bed" name="peptide_bed" label="${tool.name} on ${on_string}">
16 <actions>
17 <action name="column_names" type="metadata" default="chrom,chromStart,chromStop,name,score,strand,thickStart,thickEnd,itemRgb,blockCount,blockSizes,blockStarts"/>
18 </actions>
19 </data>
20 </outputs>
21 <tests>
22 <test>
23 <param name="peptide_input" value="peptides.tabular"/>
24 <param name="sqlite" value="test_mz_to_sqlite.sqlite"/>
25 <param name="sqlite" value="test_genomic_mapping_sqlite.sqlite"/>
26 <output name="peptide_bed" file="peptides_BED.bed"/>
27 </test>
28 </tests>
29 <help><![CDATA[
30 **PeptideGenomicCoordinate**
31
32 Gets genomic coordinate of peptides based on the information in mzsqlite and genomic mapping sqlite files.
33 This program loads two sqlite databases (mzsqlite and genomic mapping sqlite files) and calculates the genomic coordinates of the peptides provided as input. This outputs bed file for peptides.
34
35 Input: Peptide list file, mzsqlite sqlite DB file, and genomic mapping sqlite DB file
36 Output: Tabular BED file with all the columns
37
38 mzsqlite file from: https://toolshed.g2.bx.psu.edu/repos/galaxyp/mz_to_sqlite/mz_to_sqlite/2.0.0
39 genome mapping sqlite file from: https://toolshed.g2.bx.psu.edu/view/galaxyp/translate_bed/038ecf54cbec
40
41
42 P.S. : Requires sqlite
43
44 ]]></help>
45 <citations>
46 <citation type="bibtex">
47 @misc{peptidegenomiccoodinate,
48 author={Kumar, Praveen},
49 year={2018},
50 title={PeptideGenomicCoordinate}
51 }
52 </citation>
53 </citations>
54 </tool>