Repository 'pyprophet_subsample'
hg clone https://toolshed.g2.bx.psu.edu/repos/galaxyp/pyprophet_subsample

Changeset 0:973e601622a1 (2020-02-26)
Next changeset 1:2e9d5337885e (2020-04-02)
Commit message:
"planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/pyprophet commit a83d231286a8df67483df46e76b4b3a2ef90b251"
added:
macros.xml
pyprophet_subsample.xml
test-data/merged.osw
test-data/open_swath_output1.osw
test-data/open_swath_output2.osw
test-data/output.tabular
test-data/patient_specific_OSW_optimized_decoys.pqp
test-data/peptide1.osw
test-data/peptide1.pdf
test-data/peptide2.osw
test-data/peptide2.pdf
test-data/protein1.osw
test-data/protein1.pdf
test-data/protein2.osw
test-data/protein2.pdf
test-data/score.osw
test-data/score_plots.pdf
test-data/score_report.pdf
test-data/study_design.tabular
test-data/subsample.tabular
test-data/test_data.osw
b
diff -r 000000000000 -r 973e601622a1 macros.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/macros.xml Wed Feb 26 04:16:12 2020 -0500
b
@@ -0,0 +1,23 @@
+<macros>
+    <token name="@VERSION@">2.1.4</token>
+
+    <xml name="requirements">
+    <requirements>
+        <requirement type="package" version="2.1.4">pyprophet</requirement>
+        <yield/>
+    </requirements>
+    </xml>
+
+    <xml name="citations">
+    <citations>
+        <citation type="doi">10.1038/nmeth.4398</citation>
+        <citation type="doi">10.1038/nbt.3908</citation>
+        <citation type="doi">10.1093/bioinformatics/btu686</citation>
+        <citation type="doi">10.1038/nmeth.1584</citation>
+        <yield/>
+    </citations>
+    </xml>
+
+    <token name="@link@">http://openswath.org/en/latest/docs/pyprophet.html</token>
+
+</macros>
b
diff -r 000000000000 -r 973e601622a1 pyprophet_subsample.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/pyprophet_subsample.xml Wed Feb 26 04:16:12 2020 -0500
[
@@ -0,0 +1,50 @@
+<tool id="pyprophet_subsample" name="PyProphet subsample" version="@VERSION@.0">
+    <description>
+    Subsample OpenSWATH file
+    </description>
+    <macros>
+        <import>macros.xml</import>
+    </macros>
+    <expand macro="requirements"/>
+    <command detect_errors="aggressive">
+    <![CDATA[
+        pyprophet subsample
+        --in='$input'
+        --subsample_ratio=$subsample_ratio
+        $test_mode
+        --out='./output.osw'
+
+    ]]>
+    </command>
+    <inputs>
+        <param name="input" type="data" format="osw" label="Input file" help="This file needs to be in OSW format." />
+        <param argument="--subsample_ratio" type="float" value="1" label="Subsample ratio used per input file (between 0 (0 %) and 1 (100 %))" />
+        <param name="test_mode" type="boolean" truevalue="--test" falsevalue="--no-test" label="Run in test mode with fixed seed" />
+    </inputs>
+    <outputs>
+        <data name="output" format="osw" label="${tool.name} on ${on_string}: subsample.osw" from_work_dir="output.osw" />
+    </outputs>
+    <tests>
+        <test>
+            <param name="input" value="merged.osw" ftype="osw" />
+            <param name="subsample_ratio" value="0.5" />
+            <param name="test_mode" value="True" />
+            <output name="output" file="subsample.tabular" />
+        </test>
+    </tests>
+    <help>
+<![CDATA[
+**What it does**
+
+PyProphet: Semi-supervised learning and scoring of OpenSWATH results.
+
+Subsample OpenSWATH file to minimum for integrated scoring.
+
+PyProphet is a Python re-implementation of the mProphet algorithm (Reiter 2010 Nature Methods) optimized for SWATH-MS data acquired by data-independent acquisition (DIA). The algorithm was originally published in (Telemann 2014 Bioinformatics) and has since been extended to support new data types and analysis modes (Rosenberger 2017, Nature biotechnology and Nature methods).
+
+For more information, visit @link@
+
+]]>
+    </help>
+    <expand macro="citations"/>
+</tool>
b
diff -r 000000000000 -r 973e601622a1 test-data/merged.osw
b
Binary file test-data/merged.osw has changed
b
diff -r 000000000000 -r 973e601622a1 test-data/open_swath_output1.osw
b
Binary file test-data/open_swath_output1.osw has changed
b
diff -r 000000000000 -r 973e601622a1 test-data/open_swath_output2.osw
b
Binary file test-data/open_swath_output2.osw has changed
b
diff -r 000000000000 -r 973e601622a1 test-data/output.tabular
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/output.tabular Wed Feb 26 04:16:12 2020 -0500
b
@@ -0,0 +1,1 @@
+transition_group_id decoy run_id filename RT assay_rt delta_rt iRT assay_iRT delta_iRT Sequence FullPeptideName Charge mz Intensity aggr_prec_Peak_Area aggr_prec_Peak_Apex leftWidth rightWidth peak_group_rank d_score m_score id aggr_Peak_Area aggr_Peak_Apex aggr_Fragment_Annotation ProteinName m_score_peptide_experiment_wide m_score_peptide_global m_score_protein_experiment_wide m_score_protein_global
b
diff -r 000000000000 -r 973e601622a1 test-data/patient_specific_OSW_optimized_decoys.pqp
b
Binary file test-data/patient_specific_OSW_optimized_decoys.pqp has changed
b
diff -r 000000000000 -r 973e601622a1 test-data/peptide1.osw
b
Binary file test-data/peptide1.osw has changed
b
diff -r 000000000000 -r 973e601622a1 test-data/peptide1.pdf
b
Binary file test-data/peptide1.pdf has changed
b
diff -r 000000000000 -r 973e601622a1 test-data/peptide2.osw
b
Binary file test-data/peptide2.osw has changed
b
diff -r 000000000000 -r 973e601622a1 test-data/peptide2.pdf
b
Binary file test-data/peptide2.pdf has changed
b
diff -r 000000000000 -r 973e601622a1 test-data/protein1.osw
b
Binary file test-data/protein1.osw has changed
b
diff -r 000000000000 -r 973e601622a1 test-data/protein1.pdf
b
Binary file test-data/protein1.pdf has changed
b
diff -r 000000000000 -r 973e601622a1 test-data/protein2.osw
b
Binary file test-data/protein2.osw has changed
b
diff -r 000000000000 -r 973e601622a1 test-data/protein2.pdf
b
Binary file test-data/protein2.pdf has changed
b
diff -r 000000000000 -r 973e601622a1 test-data/score.osw
b
Binary file test-data/score.osw has changed
b
diff -r 000000000000 -r 973e601622a1 test-data/score_plots.pdf
b
Binary file test-data/score_plots.pdf has changed
b
diff -r 000000000000 -r 973e601622a1 test-data/score_report.pdf
b
Binary file test-data/score_report.pdf has changed
b
diff -r 000000000000 -r 973e601622a1 test-data/study_design.tabular
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/study_design.tabular Wed Feb 26 04:16:12 2020 -0500
b
@@ -0,0 +1,3 @@
+Filename Condition BioReplicate Run
+./TN22.mzML late 1 1
+./TN23.mzML early 2 2
b
diff -r 000000000000 -r 973e601622a1 test-data/subsample.tabular
b
Binary file test-data/subsample.tabular has changed
b
diff -r 000000000000 -r 973e601622a1 test-data/test_data.osw
b
Binary file test-data/test_data.osw has changed