comparison peptideGenomicCoodinate.xml @ 4:b56922070a1b draft default tip

planemo upload
author pravs
date Tue, 18 Dec 2018 16:22:29 -0500
parents
children
comparison
equal deleted inserted replaced
3:95d606bdfef7 4:b56922070a1b
1 <tool id="peptidegenomiccoodinate" name="Peptide Genomic Coodinate" 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 <!--<requirement type="package" version="3.26.0">sqlite</requirement>-->
6 </requirements>
7 <command detect_errors="aggressive"><![CDATA[
8 python '$__tool_directory__/peptideGenomicCoodinate.py'
9 '$peptideinput'
10 '$mzsqlite'
11 '$mapping'
12 '$peptide_bed'
13 ]]></command>
14 <inputs>
15 <param type="data" name="peptideinput" format="tabular" label="Peptide List (without any header line)"/>
16 <param type="data" name="mzsqlite" format="sqlite" label="mz to sqlite (mzsqlite) file"/>
17 <param type="data" name="mapping" format="sqlite" label="genomic mapping sqlite file"/>
18 </inputs>
19 <outputs>
20 <data format="bed" name="peptide_bed" label="${tool.name} on ${on_string}">
21 <actions>
22 <action name="column_names" type="metadata" default="chrom,chromStart,chromStop,name,score,strand,thickStart,thickEnd,itemRgb,blockCount,blockSizes,blockStarts"/>
23 </actions>
24 </data>
25 </outputs>
26 <tests>
27 <test>
28 <param name="peptideinput" value="peptides.tabular"/>
29 <param name="mzsqlite" value="test_mz_to_sqlite.sqlite"/>
30 <param name="mapping" value="test_genomic_mapping_sqlite.sqlite"/>
31 <output name="peptide_bed">
32 <assert_contents>
33 <has_text text="115176449" />
34 </assert_contents>
35 </output>
36 </test>
37 </tests>
38 <help><![CDATA[
39 **PeptideGenomicCoodinate**
40 Gets genomic coordinate of peptides based on the information in mzsqlite and genomic mapping sqlite files. This tool is useful in a proteogenomics workflow.
41 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.
42
43 Input: Peptide list file, mzsqlite sqlite DB file, and genomic mapping sqlite DB file
44 Output: Tabular BED file with all the columns
45
46 ]]></help>
47 <citations>
48 <citation type="bibtex">
49 @misc{peptidegenomiccoodinate,
50 author={Kumar, Praveen},
51 year={2018},
52 title={PeptideGenomicCoordinate}
53 }
54 </citation>
55 </citations>
56 </tool>