annotate dialignr.xml @ 0:fbbbf8c145fc draft default tip

"planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
author galaxyp
date Wed, 30 Dec 2020 20:12:57 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
1 <tool id="dialignr" name="DIAlignR" version="@WRAPPER_VERSION@">
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
2 <description>for retention time alignment of targeted mass spectrometric data</description>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
3 <macros>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
4 <import>macros.xml</import>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
5 </macros>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
6 <requirements>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
7 <requirement type="package" version="@TOOL_VERSION@">bioconductor-dialignr</requirement>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
8 </requirements>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
9 <command detect_errors="exit_code"><![CDATA[
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
10 #import re
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
11
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
12 mkdir -p ./data/mzml &&
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
13 mkdir -p ./data/osw &&
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
14
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
15 #for $mzml in $input_mzml_files:
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
16 #set $file_name_mzml = re.sub('[^\w\-_.]', '_', str($mzml.element_identifier))
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
17 echo '$file_name_mzml' >> ./runs.txt &&
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
18 ln -s '$mzml' './data/mzml/${file_name_mzml}.chrom.mzML' &&
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
19 #end for
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
20
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
21 #if $input_osw_file:
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
22 ln -s '$input_osw_file' './data/osw/merged.osw' &&
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
23 #end if
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
24
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
25 Rscript --vanilla '${__tool_directory__}/dialignr.R'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
26 #if $input_osw_file:
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
27 --oswMerged 'TRUE'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
28 #else:
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
29 --oswMerged 'FALSE'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
30 #end if
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
31 --maxFdrQuery '${$adv_params.maxFdrQuery}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
32 --XICfilter '${$adv_params.XICfilter}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
33 --polyOrd '${adv_params.polyOrd}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
34 --kernelLen '${adv_params.kernelLen}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
35 --globalAlignment '${adv_params.globalAlignment}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
36 --globalAlignmentFdr '${adv_params.globalAlignmentFdr}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
37 --globalAlignmentSpan '${adv_params.globalAlignmentSpan}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
38 --RSEdistFactor '${adv_params.RSEdistFactor}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
39 --normalization '${adv_params.normalization}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
40 --simMeasure '${adv_params.simMeasure}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
41 --alignType '${adv_params.alignType}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
42 --goFactor '${adv_params.goFactor}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
43 --geFactor '${adv_params.geFactor}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
44 --cosAngleThresh '${adv_params.cosAngleThresh}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
45 --OverlapAlignment '${adv_params.OverlapAlignment}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
46 --dotProdThresh '${adv_params.dotProdThresh}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
47 --gapQuantile '${adv_params.gapQuantile}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
48 --hardConstrain '${adv_params.hardConstrain}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
49 --samples4gradient '${adv_params.samples4gradient}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
50 --analyteFDR '${adv_params.analyteFDR}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
51 --unalignedFDR '${adv_params.unalignedFDR}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
52 --alignedFDR '${adv_params.alignedFDR}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
53 --baselineType '${adv_params.baselineType}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
54 --integrationType '${adv_params.integrationType}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
55 --fitEMG '${adv_params.fitEMG}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
56 --recalIntensity '${adv_params.recalIntensity}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
57 --fillMissing '${adv_params.fillMissing}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
58 --smoothPeakArea '${adv_params.smoothPeakArea}'
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
59 &&
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
60
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
61 cat alignedTargetedRuns.csv | sed 's/,/\t/g' > alignedTargetedRuns.tsv
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
62 ]]></command>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
63 <inputs>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
64 <param name="input_mzml_files" type="data" format="mzml" multiple="true" label="MZML file(s)" help="Sample file(s) in .MZML format." />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
65 <param name="input_osw_file" type="data" format="osw" optional="true" multiple="false" label="OSW file" help="Sample file in .OSW format." />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
66 <section name="adv_params" title="Advanced parameters">
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
67 <param name="maxFdrQuery" type="float" min="0" max="1" value="0.05" label="Maximum FDR query" help="Numeric value between 0 and 1. It is used to filter features from osw file which have SCORE_MS2.QVALUE less than itself." />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
68 <param name="XICfilter" type="select">
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
69 <option value="sgolay" selected="true">sgolay</option>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
70 <option value="boxcar">boxcar</option>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
71 <option value="gaussian">gaussian</option>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
72 <option value="loess ">loess</option>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
73 <option value="none">none</option>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
74 </param>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
75 <param name="polyOrd" type="integer" min="0" value="4" label="Order of the polynomial to be fit in the kernel" />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
76 <param name="kernelLen" type="integer" min="0" value="9" label="Number of data-points to consider in the kernel" />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
77 <param name="globalAlignment" type="select" label="Global alignment">
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
78 <option value="loess" selected="true">loess</option>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
79 <option value="linear">linear</option>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
80 </param>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
81 <param name="globalAlignmentFdr" type="float" min="0" max="1" value="0.01" label="Global alignment FDR" help="Numeric value between 0 and 1. Features should have m-score lower than this value for participation in LOESS fit." />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
82 <param name="globalAlignmentSpan" type="float" min="0" max="1" value="0.1" label="Global alignment Span" help="Span value for LOESS fit. For targeted proteomics 0.1 could be used." />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
83 <param name="RSEdistFactor" type="float" min="0" value="3.5" label="RSE distance" help="Defines how much distance in the unit of rse remains a noBeef zone." />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
84 <param name="normalization" type="select" label="Normalization">
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
85 <option value="mean" selected="true">mean</option>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
86 <option value="12">12</option>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
87 </param>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
88 <param name="simMeasure" type="select" label="SIM measure">
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
89 <option value="dotProduct">dotProduct</option>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
90 <option value="cosineAngle">cosineAngle</option>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
91 <option value="cosine2Angle">cosine2Angle</option>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
92 <option value="dotProductMasked" selected="true">dotProductMasked</option>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
93 <option value="euclideanDist">euclideanDist</option>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
94 <option value="covariance">covariance</option>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
95 <option value="correlation">correlation</option>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
96 </param>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
97 <param name="alignType" type="select" label="Alignment method">
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
98 <option value="global">global</option>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
99 <option value="local">local</option>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
100 <option value="hybrid" selected="true">hybrid</option>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
101 </param>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
102 <param name="goFactor" type="float" min="0" value="0.125" label="Gap penalty (first gap)" help="Penalty for introducing first gap in alignment. This value is multiplied by base gap-penalty." />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
103 <param name="geFactor" type="float" min="0" value="40" label="Gap penalty (subsequent gaps)" help="Penalty for introducing subsequent gaps in alignment. This value is multiplied by base gap-penalty." />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
104 <param name="cosAngleThresh" type="float" min="0" value="0.3" label="cosAngleTresh" help="In SIM measure = dotProductMasked mode, angular similarity should be higher than cosAngleThresh otherwise similarity is forced to zero." />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
105 <param name="OverlapAlignment" type="boolean" checked="true" truevalue="TRUE" falsevalue="FALSE" label="Overlap alignment" help="An input for alignment with free end-gaps. No: Global alignment Yes: Overlap alignment" />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
106 <param name="dotProdThresh" type="float" min="0" value="0.96" label="dotProdThresh" help="In SIM measure = dotProductMasked mode, values in similarity matrix higher than dotProdThresh quantile are checked for angular similarity." />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
107 <param name="gapQuantile" type="float" min="0" max="1" value="0.5" label="Gap quantile" help="Must be between 0 and 1. This is used to calculate base gap-penalty from similarity distribution." />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
108 <param name="hardConstrain" type="boolean" truevalue="TRUE" falsevalue="FALSE" label="Hard constrain" help="No: Indices farther from noBeef distance are filled with distance from linear fit line." />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
109 <param name="samples4gradient" type="float" min="0" value="100" label="Samples for gradient" help="Modulates penalization of masked indices." />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
110 <param name="analyteFDR" type="float" min="0" max="1" value="0.01" label="Analyte FDR" help="Defines the upper limit of FDR on a precursor to be considered for multipeptide." />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
111 <param name="unalignedFDR" type="float" min="0" max="1" value="0.01" label="Unaligned FDR" help="Must be between 0 and maxFdrQuery. Features below unalignedFDR are considered for quantification even without the RT alignment." />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
112 <param name="alignedFDR" type="float" min="0" max="1" value="0.05" label="Aligned FDR" help="Must be between unalignedFDR and 1. Features below alignedFDRare considered for quantification after the alignment." />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
113 <param name="baselineType" type="select" label="Baseline method" help="Method to estimate the background of a peak contained in XICs.">
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
114 <option value="base_to_base" selected="true">base to base</option>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
115 <option value="vertical_division_min">vertical division min</option>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
116 <option value="vertical_division_max">vertical division max</option>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
117 </param>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
118 <param name="integrationType" type="select" label="Integration method" help="Method to compute the area of a peak contained in XICs.">
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
119 <option value="intensity_sum" selected="true">intensity sum</option>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
120 <option value="trapezoid">trapezoid</option>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
121 <option value="simpson">simpson</option>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
122 </param>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
123 <param name="fitEMG" type="boolean" truevalue="TRUE" falsevalue="FALSE" label="Fit EMG" help="Enable/disable exponentially modified gaussian peak model fitting." />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
124 <param name="recalIntensity" type="boolean" truevalue="TRUE" falsevalue="FALSE" label="Recal intensity" help="Recalculate intensity for all analytes." />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
125 <param name="fillMissing" type="boolean" checked="true" truevalue="TRUE" falsevalue="FALSE" label="Fill missing" help="Calculate intensity for analytes for which features are not found." />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
126 <param name="smoothPeakArea" type="boolean" truevalue="TRUE" falsevalue="FALSE" label="Smooth peak area" help="No: Raw chromatograms will be used for quantification. Yes: Smoothed chromatograms will be used for quantification." />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
127 </section>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
128 </inputs>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
129 <outputs>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
130 <data name="out_aligned_targeted_runs" format="tabular" label="${tool.name} on ${on_string}: alignedTargetedRuns.tsv" from_work_dir="alignedTargetedRuns.tsv" />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
131 </outputs>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
132 <tests>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
133 <test>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
134 <param name="input_mzml_files" ftype="mzml" value="hroest_K120809_Strep0_PlasmaBiolRepl2_R04_SW_filt,hroest_K120809_Strep10_PlasmaBiolRepl2_R04_SW_filt" />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
135 <param name="input_osw_file" ftype="osw" value="merged.osw" />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
136 <output name="out_aligned_targeted_runs" file="alignedTargetedRuns.tsv" />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
137 </test>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
138 <test>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
139 <param name="input_mzml_files" ftype="mzml" value="hroest_K120809_Strep0_PlasmaBiolRepl2_R04_SW_filt,hroest_K120809_Strep10_PlasmaBiolRepl2_R04_SW_filt" />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
140 <param name="input_osw_file" ftype="osw" value="merged.osw" />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
141 <param name="adv_params|maxFdrQuery" value="0.001" />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
142 <output name="out_aligned_targeted_runs" file="alignedTargetedRuns_fdr.tsv" />
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
143 </test>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
144 </tests>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
145 <help><![CDATA[
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
146 DIAlignR
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
147 =============
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
148
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
149 DIAlignR is an R package for retention time alignment of targeted mass spectrometric data, including DIA and SWATH-MS data. This tool works with MS2 chromatograms directly and uses dynamic programming for alignment of raw chromatographic traces. DIAlignR uses a hybrid approach of global (feature-based) and local (raw data-based) alignment to establish correspondence between peaks.
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
150
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
151 For more information see the DIAlignR documentation_.
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
152
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
153 .. _documentation: https://github.com/shubham1637/DIAlignR
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
154
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
155 ]]></help>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
156 <citations>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
157 <citation type="doi">10.1074/mcp.TIR118.001132</citation>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
158 </citations>
fbbbf8c145fc "planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/dialignr commit 8dd046346db8261c462e2f3f5b4ff7f2433348df"
galaxyp
parents:
diff changeset
159 </tool>