annotate maystro_workflow_1.xml @ 0:c4f98010d9ac 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:40:14 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
c4f98010d9ac 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_1" name="Workflow-1 Parameters Maystro" version="@TOOL_VERSION@" profile="21.09">
c4f98010d9ac 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-1 to be used again</description>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
3 <macros>
c4f98010d9ac 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>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
5 </macros>
c4f98010d9ac 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[
c4f98010d9ac 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':
c4f98010d9ac 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'
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
9 #else
c4f98010d9ac 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 = {
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
11 'assembly_plan_name': '$assembly_plan_name',
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
12 'topology': '$topology',
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
13 'enzyme': '$enzyme',
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
14 'execution': '$execution',
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
15 'db_uri': '$db_uri',
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
16 'table': '$table_name',
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
17 'fragment_column': '$fragment_column',
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
18 'sequence_column': '$sequence_column',
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
19 'annotation_column': '$annotation_column'
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
20 }; f = open('$output_json', 'w'); json.dump(params, f, indent=4); f.close()" && echo DEBG && cat '$output_json'
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
21 #end if
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
22 && echo DEBG && cat '$output_json'
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
23 ]]></command>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
24 <inputs>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
25 <param name="assembly_plan_name" type="select" label="Assembly Calss" help="select the assambly class">
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
26 <option value="Type2sRestrictionAssembly" selected="True">GoldenGate_assembly</option>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
27 <option value="GibsonAssembly">Gibson_assembly</option>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
28 <option value="BASICAssembly">BASIC_assembly</option>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
29 <option value="BioBrickStandardAssembly">biobrick_assembly</option>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
30 <option value="LigaseCyclingReactionAssembly">lcr_assembly</option>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
31 </param>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
32 <param name="topology" type="select" label="Assambly Topology" help="select circular or linear topology">
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
33 <option value="linear">linear</option>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
34 <option value="circular" selected="True">circular</option>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
35 </param>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
36 <param name="enzyme" type="text" label="Enzyme" value="auto"/>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
37 <param name="execution" type="boolean" label="Save To DB ?" checked ='false' optional="true" help="If True data will be saved in the DB" />
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
38 <param name="db_uri" type="text" optional="true" help='Only if Input Your Parameters As JSON is FALSE' />
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
39 <param name="table_name" type="text" optional="true" help='table name in DB' />
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
40 <param name="fragment_column" type="text" optional="true" help='Fragmnet column in DB' />
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
41 <param name="sequence_column" type="text" optional="true" help='Sequence column in DB' />
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
42 <param name="annotation_column" type="text" optional="true" help='Annotation column in DB' />
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
43 <param name="user_json" type="data" format="json" optional="true" help='Only if Input Your Parameters As JSON is TRUE' />
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
44 </inputs>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
45 <outputs>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
46 <data name="output_json" format="json" label="Workflow-1 Parameters"/>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
47 </outputs>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
48 <tests>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
49 <!--manual parameters set-->
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
50 <test>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
51 <param name="assembly_plan_name" value="Type2sRestrictionAssembly" />
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
52 <param name="topology" value='circular'/>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
53 <param name="enzyme" value="auto"/>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
54 <param name="execution" value="true" />
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
55 <param name="db_uri" value="postgresql://postgres:RK17@localhost:5432/test_fragments_db" />
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
56 <param name="table_name" value="sample" />
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
57 <param name="fragment_column" value="fragment" />
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
58 <param name="sequence_column" value="sequence" />
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
59 <param name="annotation_column" value="annotation" />
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
60 <output name="output_json">
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
61 <assert_contents>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
62 <has_n_lines n="11" />
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
63 </assert_contents>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
64 </output>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
65 </test>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
66 <!--JSON parameters set-->
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
67 <test>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
68 <param name="user_json" value='test-JSON_workflow1.json'/>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
69 <output name="output_json">
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
70 <assert_contents>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
71 <has_n_lines n="11" />
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
72 </assert_contents>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
73 </output>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
74 </test>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
75 </tests>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
76 <help><![CDATA[
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
77 Parameters Maystro for workflow-1
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
78 =================================
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
79
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
80 Store and Generate a JSON file to be used as workflow-1 configuration. This JSON file can later be used as input to pass workflow-1 parameters
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
81
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
82 ]]></help>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
83 <citations>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
84 <citation type="bibtex">
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
85 @unpublished{parameters_maystro_workflow_1
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
86 author = {Ramiz Khaled},
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
87 title = {{parameters_maystro_workflow_1}},
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
88 url = {https://github.com/brsynth/},
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
89 }
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
90 </citation>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
91 </citations>
c4f98010d9ac planemo upload for repository https://github.com/brsynth/galaxytools/tree/main/tools/parameters_maystro commit db4ac861e1d03fcdfe94321d858839124e493930-dirty
tduigou
parents:
diff changeset
92 </tool>