Mercurial > repos > chemteam > biopdb_align_and_rmsd
annotate BioPDB_align_and_rmsd.xml @ 0:6352d6dd74e2 draft default tip
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
author | chemteam |
---|---|
date | Thu, 06 Jun 2024 07:09:14 +0000 |
parents | |
children |
rev | line source |
---|---|
0
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
1 <tool id="biopdb_align_and_rmsd" name="Align structures and compute relative RMSDs" version="@TOOL_VERSION@+galaxy@GALAXY_VERSION@"> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
2 <description>using Biopython</description> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
3 <macros> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
4 <token name="@TOOL_VERSION@">1.79</token> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
5 <token name="@GALAXY_VERSION@">0</token> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
6 </macros> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
7 <requirements> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
8 <requirement type="package" version="1.79">biopython</requirement> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
9 </requirements> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
10 <command detect_errors="exit_code"><![CDATA[ |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
11 |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
12 python3 '$__tool_directory__/BioPDB_align_and_rmsd.py' --start_residue '$start_residue' --end_residue '$end_residue' --ref_structure '$ref_structure' --model '$model' --aligned_structure '$aligned_structure' --rmsd '$rmsd_out' >> verbose.txt 2>&1 |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
13 |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
14 ]]></command> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
15 <inputs> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
16 <param name="start_residue" type="integer" label="Starting residue to align" help="This should be the same starting residue for the model and reference structure." value="0" /> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
17 <param name="end_residue" type="integer" label="Ending residue to align" help="This should be the same ending residue for the model and reference structure." value="0"/> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
18 <param name="ref_structure" type="data" format="pdb" label="Reference structure" help="This can be an experimental structure or another model you wish to compare against."/> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
19 <param name="model" type="data" format="pdb" label="Sample structure" help="This is the structure you wish to align and compute a relative RMSD for. This can also be an experimental structure or another model."/> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
20 </inputs> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
21 |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
22 <outputs> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
23 <data name="aligned_structure" format="pdb" label="PDB file of the aligned structure ${on_string}"></data> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
24 <data name="rmsd_out" format="tabular" label="RMSD of the aligned structure ${on_string}"></data> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
25 </outputs> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
26 |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
27 <tests> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
28 <test> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
29 <param name="start_residue" value="1" /> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
30 <param name="end_residue" value="15"/> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
31 <param name="ref_structure" value="reference_structure.pdb" /> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
32 <param name="model" value="model.pdb" /> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
33 <output name="aligned_structure" ftype="pdb"> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
34 <assert_contents> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
35 <has_text text="ATOM 5 CA ARG 1 6.016 6.125 -0.066 1.00 0.00 C"/> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
36 <has_text text="ATOM 29 CA HIS 2 4.909 5.168 3.434 1.00 0.00 C"/> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
37 <has_text text="ATOM 46 CA TYR 3 7.956 4.326 5.551 1.00 0.00 C"/> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
38 </assert_contents> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
39 </output> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
40 <output name="rmsd_out" ftype="tabular"> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
41 <assert_contents> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
42 <has_text text="5.492787964992471"/> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
43 </assert_contents> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
44 </output> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
45 </test> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
46 </tests> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
47 |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
48 <help><![CDATA[ |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
49 Tool to align protein structures and compute relative RMSDs, using the alpha carbon coordinates. |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
50 |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
51 .. class:: infomark |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
52 |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
53 **Inputs** |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
54 |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
55 PDB files for the reference structure, a model, as well as the starting and ending residues for the alignment. |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
56 |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
57 .. class:: infomark |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
58 |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
59 **Outputs** |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
60 |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
61 1) Tabular file containing the RMSD. |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
62 2) PDB file of the model with the aligned coordinates. |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
63 |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
64 |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
65 ]]></help> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
66 <citations> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
67 <citation type="doi">https://doi.org/10.1093/bioinformatics/btp163</citation> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
68 </citations> |
6352d6dd74e2
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/ commit b90c5ab8f15397299e8baf2e903a9911c44d7668
chemteam
parents:
diff
changeset
|
69 </tool> |