Mercurial > repos > pablocarb > synbiodesign
comparison maketool.sh @ 1:b0b7deebb71e draft
planemo upload commit 9e24fae395aeaca30c5bcdef80a21b7decb04042-dirty
author | pablocarb |
---|---|
date | Mon, 29 Apr 2019 10:53:09 -0400 |
parents | ac027c9ace4d |
children | 856bd14e6e96 |
comparison
equal
deleted
inserted
replaced
0:ac027c9ace4d | 1:b0b7deebb71e |
---|---|
3 # Create Selenzyme Galaxy tool using planemo. | 3 # Create Selenzyme Galaxy tool using planemo. |
4 # --example_input reaction.csv \ | 4 # --example_input reaction.csv \ |
5 # --example_output out.csv \ | 5 # --example_output out.csv \ |
6 # --example_command 'python $__tool_directory__/toolSelenzyme.py $input1 $output1 -server $server' \ | 6 # --example_command 'python $__tool_directory__/toolSelenzyme.py $input1 $output1 -server $server' \ |
7 | 7 |
8 # Generate tool backbone (additional params need to be entered manually | |
8 planemo tool_init --force \ | 9 planemo tool_init --force \ |
9 --id 'selenzyme' \ | 10 --id 'selenzyme' \ |
10 --name 'Selenzyme' \ | 11 --name 'Selenzyme' \ |
11 --description 'enzyme sequence selection from reaction template' \ | 12 --description 'enzyme sequence selection from reaction template' \ |
12 --requirement requests@2 \ | 13 --requirement requests@2 \ |
13 --example_command 'python $__tool_directory__/toolSelenzyme.py $input1 $output1' \ | 14 --example_command 'python $__tool_directory__/toolSelenzyme.py $input1 $output1 -server $server' \ |
14 --example_input 'reaction.csv' \ | 15 --example_input 'reaction.csv' \ |
15 --example_output 'out.csv' \ | 16 --example_output 'out.csv' \ |
16 --doi 10.1093/bioinformatics/bty065 \ | 17 --doi 10.1093/bioinformatics/bty065 \ |
17 --help_from_command 'python3 toolSelenzyme.py -h' | 18 --help_from_command 'python3 toolSelenzyme.py -h' |
18 | 19 |
20 # Init shed repository | |
19 planemo shed_init . --force \ | 21 planemo shed_init . --force \ |
20 --name synbiodesign \ | 22 --name synbiodesign \ |
21 --owner pablocarb \ | 23 --owner pablocarb \ |
22 --description 'BioCAD for Industrial Biotechnology' \ | 24 --description 'BioCAD for Industrial Biotechnology' \ |
23 --category 'Systems Biology' \ | 25 --category 'Systems Biology' \ |
24 --homepage_url 'https://github.com/pablocarb/galaxysynbiodesign' | 26 --homepage_url 'https://github.com/pablocarb/galaxysynbiodesign' |
25 | 27 |
28 # Create repository in the toolshed | |
26 planemo shed_create \ | 29 planemo shed_create \ |
27 --shed_target toolshed \ | 30 --shed_target toolshed \ |
28 --shed_key_from_env TOOLSHED | 31 --shed_key_from_env TOOLSHED |
29 | 32 |
33 # Update repository in the toolshed | |
30 planemo shed_update \ | 34 planemo shed_update \ |
31 --check_diff --shed_target toolshed | 35 --check_diff --shed_target toolshed \ |
36 --shed_key_from_env TOOLSHED | |
37 |