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