Mercurial > repos > chemteam > biomd_rmsd_clustering
comparison rmsd_clustering.xml @ 2:b9c46dbe9605 draft default tip
"planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit f1c3c88c7395f2e84cbc533199406aadb79c5c07"
author | chemteam |
---|---|
date | Fri, 13 Nov 2020 19:38:57 +0000 |
parents | ee1f38eb220e |
children |
comparison
equal
deleted
inserted
replaced
1:b001ebc8bf58 | 2:b9c46dbe9605 |
---|---|
1 <tool id="biomd_rmsd_clustering" name="Hierarchical clustering" version="0.@TOOL_VERSION@+galaxy@GALAXY_VERSION@"> | 1 <tool id="biomd_rmsd_clustering" name="Hierarchical clustering" version="0.@TOOL_VERSION@+galaxy@GALAXY_VERSION@"> |
2 <description>from MD RMSD matrix data</description> | 2 <description>from MD RMSD matrix data</description> |
3 <macros> | 3 <macros> |
4 <token name="@TOOL_VERSION@">1.5.2</token> | 4 <token name="@TOOL_VERSION@">1.5.2</token> |
5 <token name="@GALAXY_VERSION@">0</token> | 5 <token name="@GALAXY_VERSION@">1</token> |
6 </macros> | 6 </macros> |
7 <requirements> | 7 <requirements> |
8 <requirement type="package" version="@TOOL_VERSION@">scipy</requirement> | 8 <requirement type="package" version="@TOOL_VERSION@">scipy</requirement> |
9 <requirement type="package" version="1.19.1">numpy</requirement> | 9 <requirement type="package" version="1.19.1">numpy</requirement> |
10 <requirement type="package" version="3.3.1">matplotlib</requirement> | 10 <requirement type="package" version="3.3.1">matplotlib</requirement> |
26 --heatmap '$hmap' | 26 --heatmap '$hmap' |
27 --cmap '$cmap' | 27 --cmap '$cmap' |
28 #end if | 28 #end if |
29 --start '$start' | 29 --start '$start' |
30 --end '$end' | 30 --end '$end' |
31 '$normalize' | 31 $normalize |
32 ]]></command> | 32 ]]></command> |
33 <inputs> | 33 <inputs> |
34 <param label="JSON or tabular input file" type="data" format="json,tabular" name="inp" argument="--json"/> | 34 <param label="JSON or tabular input file" type="data" format="json,tabular" name="inp" argument="--json"/> |
35 <param label="First trajectory frame to calculate distance matrix" value="0" type="integer" name="start" argument="--start"/> | 35 <param label="First trajectory frame to calculate distance matrix" value="0" type="integer" name="start" argument="--start"/> |
36 <param label="Last trajectory frame to calculate distance matrix" value="-1" type="integer" name="end" argument="--end"/> | 36 <param label="Last trajectory frame to calculate distance matrix" value="-1" type="integer" name="end" argument="--end"/> |
73 <output name="outp_mat" value="outp_mat.tabular"/> | 73 <output name="outp_mat" value="outp_mat.tabular"/> |
74 <output name="dend" value="dendrogram.png"/> | 74 <output name="dend" value="dendrogram.png"/> |
75 <output name="hmap" value="heatmap.png"/> | 75 <output name="hmap" value="heatmap.png"/> |
76 <output name="Z" value="Z.tabular"/> | 76 <output name="Z" value="Z.tabular"/> |
77 </test> | 77 </test> |
78 <test expect_num_outputs="2"> | |
79 <param name="inp" value="inp.json"/> | |
80 <param name="dendrogram" value="false"/> | |
81 <param name="heatmap" value="false"/> | |
82 <param name="clustering_method" value="average"/> | |
83 <param name="cmap" value="plasma"/> | |
84 <param name="start" value="0"/> | |
85 <param name="end" value="-1"/> | |
86 <param name="normalize" value="false"/> | |
87 <output name="outp_mat" value="outp_mat_unnormalized.tabular"/> | |
88 <output name="Z" value="Z_unnormalized.tabular"/> | |
89 </test> | |
78 </tests> | 90 </tests> |
79 <help><![CDATA[ | 91 <help><![CDATA[ |
80 .. class:: infomark | 92 .. class:: infomark |
81 | 93 |
82 **What it does** | 94 **What it does** |