annotate maystro_workflow_0.xml @ 0:9ab8b3673816 draft default tip

planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
author tduigou
date Wed, 23 Jul 2025 09:39:39 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
1 <tool id="parameters_maystro_workflow_0" name="Workflow-0 Parameters Maystro" version="@TOOL_VERSION@" profile="21.09">
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
2 <description>Store parameters of workflow-0 to be used again</description>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
3 <macros>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
4 <token name="@TOOL_VERSION@">0.1.0</token>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
5 </macros>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
6 <command detect_errors="exit_code"><![CDATA[
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
7 #if $user_json and str($user_json) != 'None':
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
8 cp '$user_json' '$output_json'
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
9 #else
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
10 python3 -c "import json; params = {
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
11 'avoid_patterns': '$avoid_patterns',
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
12 'hairpin_constraints': '$hairpin_constraints',
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
13 'gc_constraints': '$gc_constraints',
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
14 'kmer_size': '$kmer_size',
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
15 'execution': '$execution',
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
16 'db_uri': '$db_uri',
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
17 'table': '$table_name',
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
18 'fragment_column': '$fragment_column',
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
19 'sequence_column': '$sequence_column',
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
20 'annotation_column': '$annotation_column'
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
21 }; f = open('$output_json', 'w'); json.dump(params, f, indent=4); f.close()" && echo DEBG && cat '$output_json'
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
22 #end if
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
23 && echo DEBG && cat '$output_json'
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
24 ]]></command>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
25 <inputs>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
26 <param name="avoid_patterns" type="text" area="true" optional="true" label="Avoid Patterns (one per line)" />
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
27 <param name="hairpin_constraints" type="text" area="true" label="Hairpins Constraints" optional="true" help="e.g. (you can add others Hairpins Constraints on a new line): stem_size=20, hairpin_window=200"/>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
28 <param name="gc_constraints" type="text" area="true" label="Enforce GC Content Constraints" optional="true" help="e.g. (you can add others Enforce GC Content Constraints on a new line): mini=0.3, maxi=0.7, window=100"/>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
29 <param name="kmer_size" type="integer" label="K-mer Uniqueness Size" value="" optional="true" help="e.g.: 15"/>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
30 <param name="execution" type="boolean" label="Save To DB ?" checked ='false' optional="true" help="If True data will be saved in the DB" />
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
31 <param name="db_uri" type="text" optional="true" help='Only if Input Your Parameters As JSON is FALSE' />
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
32 <param name="table_name" type="text" optional="true" help='table name in DB' />
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
33 <param name="fragment_column" type="text" optional="true" help='Fragmnet column in DB' />
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
34 <param name="sequence_column" type="text" optional="true" help='Sequence column in DB' />
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
35 <param name="annotation_column" type="text" optional="true" help='Annotation column in DB' />
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
36 <param name="user_json" type="data" format="json" optional="true" help='Only if Input Your Parameters As JSON is TRUE' />
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
37 </inputs>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
38 <outputs>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
39 <data name="output_json" format="json" label="Workflow-0 Parameters"/>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
40 </outputs>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
41 <tests>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
42 <!--manual parameters set-->
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
43 <test>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
44 <param name="avoid_patterns" value="BsaI_site
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
45 BsmBI_site
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
46 BbsI_site
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
47 SapI_site
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
48 8x1mer
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
49 5x3mer
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
50 9x2mer" />
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
51 <param name="hairpin_constraints" value='stem_size=20, hairpin_window=200'/>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
52 <param name="gc_constraints" value="mini=0.3, maxi=0.7, window=100
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
53 mini=0.1, maxi=0.9, window=100"/>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
54 <param name="kmer_size" value="15" />
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
55 <param name="execution" value="true" />
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
56 <param name="db_uri" value="postgresql://postgres:RK17@localhost:5432/test_fragments_db" />
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
57 <param name="table_name" value="sample" />
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
58 <param name="fragment_column" value="fragment" />
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
59 <param name="sequence_column" value="sequence" />
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
60 <param name="annotation_column" value="annotation" />
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
61 <output name="output_json">
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
62 <assert_contents>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
63 <has_n_lines n="12" />
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
64 </assert_contents>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
65 </output>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
66 </test>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
67 <!--JSON parameters set-->
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
68 <test>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
69 <param name="user_json" value='test_json.json'/>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
70 <output name="output_json">
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
71 <assert_contents>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
72 <has_n_lines n="12" />
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
73 </assert_contents>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
74 </output>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
75 </test>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
76 </tests>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
77 <help><![CDATA[
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
78 Parameters Maystro for workflow-0
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
79 =================================
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
80
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
81 Store and Generate a JSON file to be used as workflow-0 configuration. This JSON file can later be used as input to pass workflow-0 parameters
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
82
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
83 ]]></help>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
84 <citations>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
85 <citation type="bibtex">
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
86 @unpublished{parameters_maystro_workflow_0
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
87 author = {Ramiz Khaled},
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
88 title = {{parameters_maystro_workflow_0}},
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
89 url = {https://github.com/brsynth/},
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
90 }
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
91 </citation>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
92 </citations>
9ab8b3673816 planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
93 </tool>