Mercurial > repos > chemteam > biobb_pytorch
annotate biobb_apply_mdae.xml @ 0:0d9f162a7d2c draft default tip
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
author | chemteam |
---|---|
date | Thu, 05 Dec 2024 17:20:02 +0000 |
parents | |
children |
rev | line source |
---|---|
0
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
1 <tool id="biobb_pytorch_apply_mdae" name="ApplyMdae" version="@TOOL_VERSION@" profile="22.05"> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
2 <description>Apply a Molecular Dynamics AutoEncoder (MDAE) PyTorch model.</description> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
3 <macros> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
4 <token name="@TOOL_VERSION@">4.2.1</token> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
5 </macros> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
6 |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
7 <requirements> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
8 <requirement type="package" version="@TOOL_VERSION@">biobb_pytorch</requirement> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
9 </requirements> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
10 |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
11 <command detect_errors="exit_code"><![CDATA[ |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
12 |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
13 ln -s '$input_data_npy_path' ./input_data_npy_path.$input_data_npy_path.ext && |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
14 ln -s '$input_model_pth_path' ./input_model_pth_path.pth && |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
15 |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
16 #if $config_json: |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
17 ln -s '$config_json' ./config_json.$config_json.ext && |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
18 #end if |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
19 |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
20 apply_mdae |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
21 |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
22 #if $config_json: |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
23 --config ./config_json.$config_json.ext |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
24 #end if |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
25 |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
26 --input_data_npy_path ./input_data_npy_path.$input_data_npy_path.ext |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
27 --input_model_pth_path ./input_model_pth_path.pth |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
28 #if $output_latent_space_npy_path: |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
29 --output_latent_space_npy_path ./output_latent_space_npy_path.npy |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
30 #end if |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
31 --output_reconstructed_data_npy_path ./output_reconstructed_data_npy_path.npy |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
32 ; |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
33 ]]> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
34 </command> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
35 |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
36 <inputs> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
37 <param name="input_data_npy_path" type="data" format="npy" optional="False" label="Input NPY file" help="Input data file"/> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
38 <param name="input_model_pth_path" type="data" format="pth" optional="False" label="Input PTH file" help="Input model file"/> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
39 <param name="config_json" type="data" format="json" optional="True" label="Configuration file" help="File containing tool settings"/> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
40 </inputs> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
41 |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
42 <outputs> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
43 <data format="npy" name="output_reconstructed_data_npy_path" from_work_dir="output_reconstructed_data_npy_path.npy" label="output_reconstructed_data_npy_path" /> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
44 <data format="npy" name="output_latent_space_npy_path" from_work_dir="output_latent_space_npy_path.npy" label="output_latent_space_npy_path" /> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
45 </outputs> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
46 |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
47 <tests> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
48 <test> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
49 <param name="config_json" value="config_apply_mdae.json" ftype="json" /> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
50 <param name="input_data_npy_path" value="train_mdae_traj.npy" ftype="npy" /> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
51 <param name="input_model_pth_path" value="ref_output_model.pth" /> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
52 <output name="output_reconstructed_data_npy_path" ftype="npy"> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
53 <assert_contents> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
54 <has_size value="123k" delta="50k"/> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
55 </assert_contents> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
56 </output> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
57 <output name="output_latent_space_npy_path" ftype="npy"> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
58 <assert_contents> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
59 <has_size value="928" delta="200"/> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
60 </assert_contents> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
61 </output> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
62 </test> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
63 </tests> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
64 |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
65 <help> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
66 .. class:: infomark |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
67 |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
68 Check the syntax for the tool parameters at the original library documentation: https://biobb-pytorch.readthedocs.io/en/latest |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
69 </help> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
70 |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
71 <citations> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
72 <citation type="bibtex"> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
73 @misc{githubbiobb, |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
74 author = {Andrio P, Bayarri, G., Hospital A, Gelpi JL}, |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
75 year = {2019-21}, |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
76 title = {biobb: BioExcel building blocks }, |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
77 publisher = {GitHub}, |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
78 journal = {GitHub repository}, |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
79 url = {https://github.com/bioexcel/biobb_pytorch}, |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
80 } |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
81 </citation> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
82 <citation type="doi">10.1038/s41597-019-0177-4</citation> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
83 </citations> |
0d9f162a7d2c
planemo upload for repository https://github.com/galaxycomputationalchemistry/galaxy-tools-compchem/tree/master/tools/biobb_pytorch commit 891dd7da50f0a362969b9fb1cf8db9171b04f78a
chemteam
parents:
diff
changeset
|
84 </tool> |