Mercurial > repos > tduigou > sbol3_diff
annotate sbol3_diff.xml @ 2:67fd1abac44b draft default tip
planemo upload for repository https://github.com/SynBioDex/SBOL-utilities commit 51525bc3c90f9bdd38e26e74e6a8761306b3a442
author | tduigou |
---|---|
date | Mon, 15 May 2023 07:38:18 +0000 |
parents | 802a4df35956 |
children |
rev | line source |
---|---|
1
802a4df35956
planemo upload for repository https://github.com/SynBioDex/SBOL-utilities commit eadd9bb9edbc70361b9e8d7900e6743b37142ee3
tduigou
parents:
0
diff
changeset
|
1 <tool id="sbol3_diff" name="SBOL3 DIFF" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="21.09" license="MIT"> |
0
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
2 <description>Computes the difference between two SBOL3 documents</description> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
3 <macros> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
4 <token name="@VERSION_SUFFIX@">0</token> |
2
67fd1abac44b
planemo upload for repository https://github.com/SynBioDex/SBOL-utilities commit 51525bc3c90f9bdd38e26e74e6a8761306b3a442
tduigou
parents:
1
diff
changeset
|
5 <token name="@TOOL_VERSION@">1.0a17</token> |
0
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
6 </macros> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
7 <requirements> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
8 <requirement type="package" version="@TOOL_VERSION@">sbol-utilities</requirement> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
9 </requirements> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
10 <stdio> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
11 <exit_code range="2:" level="fatal" /> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
12 <exit_code range="0" level="warning" description="No differences detected" /> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
13 <exit_code range="1" level="warning" description="Differences detected" /> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
14 </stdio> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
15 <command><![CDATA[ |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
16 ln -s '$sbol3_in_1' '$sbol3_in_1.name' && |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
17 ln -s '$sbol3_in_2' '$sbol3_in_2.name' && |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
18 sbol-diff '$sbol3_in_1.name' '$sbol3_in_2.name' > '$diff_out' |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
19 ]]></command> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
20 <inputs> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
21 <param name="sbol3_in_1" type="data" format="nt" label="First input SBOL3" /> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
22 <param name="sbol3_in_2" type="data" format="nt" label="Second input SBOL3" /> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
23 </inputs> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
24 <outputs> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
25 <data name="diff_out" format="txt" label="${tool.name}: ${sbol3_in_1.name} - ${sbol3_in_2.name}"/> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
26 </outputs> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
27 <tests> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
28 <test> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
29 <!-- test 1: check if identical output is produced --> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
30 <param name="sbol3_in_1" value="simple_library.nt" /> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
31 <param name="sbol3_in_2" value="expanded_simple_library.nt" /> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
32 <output name="diff_out" file="sbol3_diff_out.txt" ftype="txt" compare="diff" sort="true"/> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
33 </test> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
34 </tests> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
35 <help><![CDATA[ |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
36 SBOL3 DIFF |
1
802a4df35956
planemo upload for repository https://github.com/SynBioDex/SBOL-utilities commit eadd9bb9edbc70361b9e8d7900e6743b37142ee3
tduigou
parents:
0
diff
changeset
|
37 ========== |
0
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
38 |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
39 Input |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
40 ----- |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
41 |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
42 Required: |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
43 |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
44 * **First input SBOL3**\ |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
45 * **Second input SBOL3**\ |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
46 |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
47 Output |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
48 ------ |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
49 |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
50 * **Output**\ : Output with differences between two SBOL3 files. |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
51 ]]></help> |
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
52 <creator> |
1
802a4df35956
planemo upload for repository https://github.com/SynBioDex/SBOL-utilities commit eadd9bb9edbc70361b9e8d7900e6743b37142ee3
tduigou
parents:
0
diff
changeset
|
53 <organization name="BioRetroSynth" url="https://github.com/brsynth"/> |
0
024def08af09
planemo upload commit ce400589f51221295c59294ed462bb82220f4654-dirty
tduigou
parents:
diff
changeset
|
54 </creator> |
1
802a4df35956
planemo upload for repository https://github.com/SynBioDex/SBOL-utilities commit eadd9bb9edbc70361b9e8d7900e6743b37142ee3
tduigou
parents:
0
diff
changeset
|
55 <citations> |
802a4df35956
planemo upload for repository https://github.com/SynBioDex/SBOL-utilities commit eadd9bb9edbc70361b9e8d7900e6743b37142ee3
tduigou
parents:
0
diff
changeset
|
56 <citation type="doi">10.1021/acssynbio.1c00188</citation> |
802a4df35956
planemo upload for repository https://github.com/SynBioDex/SBOL-utilities commit eadd9bb9edbc70361b9e8d7900e6743b37142ee3
tduigou
parents:
0
diff
changeset
|
57 </citations> |
802a4df35956
planemo upload for repository https://github.com/SynBioDex/SBOL-utilities commit eadd9bb9edbc70361b9e8d7900e6743b37142ee3
tduigou
parents:
0
diff
changeset
|
58 </tool> |