Mercurial > repos > artbio > concatenate_multiple_datasets
annotate catWrapper.xml @ 4:7afc0515a307 draft
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
author | artbio |
---|---|
date | Tue, 18 Jun 2019 11:59:06 -0400 |
parents | 62aebaf6cfa0 |
children | 99a5ed06b86c |
rev | line source |
---|---|
4
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
1 <tool id="cat_multi_datasets" name="Concatenate multiple datasets" version="1.3.0"> |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
2 <description>tail-to-head by specifying how</description> |
0
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
3 <command><![CDATA[ |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
4 #if $headers == 0: |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
5 #set $concat_command = "cat" |
0
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
6 #else: |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
7 #set $concat_command = 'tail -q -n +'+ str(int($headers)+1) |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
8 #end if |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
9 #if $global_condition.input_type == "singles": |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
10 #if $dataset_names == "No": |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
11 #for $file in $global_condition.inputs |
4
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
12 #if $file.ext[-2:] == "gz": |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
13 gzip -dc '$file' | $concat_command | gzip -c >> '$out_file1' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
14 #else: |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
15 $concat_command '$file' >> '$out_file1' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
16 #end if |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
17 #end for |
4
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
18 sleep 1 |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
19 #else: |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
20 #for $file in $global_condition.inputs |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
21 #if $file.ext[-2:] == "gz": |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
22 printf "# ${file.element_identifier}\n" | gzip -c >> '$out_file1' && |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
23 gzip -dc "$file" | $concat_command |gzip -c >> '$out_file1' && |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
24 #else: |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
25 printf "# ${file.element_identifier}\n" >> '$out_file1' && |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
26 $concat_command "$file" >> '$out_file1' && |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
27 #end if |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
28 #end for |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
29 sleep 1 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
30 #end if |
3
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
31 #else if $global_condition.input_type == "simple_collections": |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
32 mkdir concatenated && |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
33 #if $dataset_names == "No": |
4
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
34 #for $x, $y in zip($global_condition.input_1, $global_condition.input_2): |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
35 #if $x.ext[-2:] == "gz": |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
36 gzip -dc '$x' | $concat_command | gzip -c > concatenated/'${x.element_identifier}.listed.${x.ext}.listed' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
37 gzip -dc '$y' | $concat_command | gzip -c >> concatenated/'${x.element_identifier}.listed.${x.ext}.listed' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
38 #else: |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
39 $concat_command '$x' '$y' > concatenated/'${x.element_identifier}.listed.${x.ext}.listed' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
40 #end if |
3
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
41 #end for |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
42 sleep 1 |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
43 #else: |
4
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
44 #for $x, $y in zip($global_condition.input_1, $global_condition.input_2) |
3
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
45 #if $x.ext[-2:] == "gz": |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
46 printf "# ${x.element_identifier}\n" | gzip -c > concatenated/'${x.element_identifier}_${y.element_identifier}.listed.${x.ext}.listed' && |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
47 gzip -dc '$x' | $concat_command | gzip -c >> concatenated/'${x.element_identifier}_${y.element_identifier}.listed.${x.ext}.listed' && |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
48 printf "# ${y.element_identifier}\n" | gzip -c >> concatenated/'${x.element_identifier}_${y.element_identifier}.listed.${x.ext}.listed' && |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
49 gzip -dc '$y' | $concat_command | gzip -c >> concatenated/'${x.element_identifier}_${y.element_identifier}.listed.${x.ext}.listed' && |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
50 #else: |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
51 printf "# ${x.element_identifier}\n" > concatenated/'${x.element_identifier}_${y.element_identifier}.listed.${x.ext}.listed' && |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
52 $concat_command '$x'>> concatenated/'${x.element_identifier}_${y.element_identifier}.listed.${x.ext}.listed' && |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
53 printf "# ${y.element_identifier}\n" >> concatenated/'${x.element_identifier}_${y.element_identifier}.listed.${x.ext}.listed' && |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
54 $concat_command '$y' >> concatenated/'${x.element_identifier}_${y.element_identifier}.listed.${x.ext}.listed' && |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
55 #end if |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
56 #end for |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
57 sleep 1 |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
58 #end if |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
59 #else if $global_condition.input_type == "paired_collection": |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
60 #if $global_condition.paired_cat_type == "by_strand": |
4
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
61 mkdir concatenated && |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
62 #if $dataset_names == "No": |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
63 #for $file in $global_condition.inputs |
4
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
64 #if $file['forward'].ext[-2:] == "gz": |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
65 gzip -dc $file['forward'] | $concat_command | gzip -c >> concatenated/forward.listed.${file['forward'].ext}.listed && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
66 gzip -dc $file['reverse'] | $concat_command | gzip -c >> concatenated/reverse.listed.${file['reverse'].ext}.listed && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
67 #else: |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
68 $concat_command $file['forward'] >> concatenated/forward.listed.${file['forward'].ext}.listed && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
69 $concat_command $file['reverse'] >> concatenated/reverse.listed.${file['reverse'].ext}.listed && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
70 #end if |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
71 #end for |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
72 sleep 1 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
73 #else: |
4
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
74 #for $file in $global_condition.inputs.keys(): |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
75 #if $global_condition.inputs[$file]['forward'].ext[-2:] == "gz": |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
76 printf "# ${file}_forward\n" | gzip -c >> concatenated/forward.listed.${global_condition.inputs[$file]['forward'].ext}.listed && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
77 gzip -dc $global_condition.inputs[$file]['forward'] | $concat_command | gzip -c >> concatenated/forward.listed.${global_condition.inputs[$file]['forward'].ext}.listed && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
78 printf "# ${file}_reverse\n" | gzip -c >> concatenated/reverse.listed.${global_condition.inputs[$file]['reverse'].ext}.listed && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
79 gzip -dc $global_condition.inputs[$file]['reverse'] | $concat_command | gzip -c >> concatenated/reverse.listed.${global_condition.inputs[$file]['reverse'].ext}.listed && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
80 #else: |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
81 printf "# ${file}_forward\n" >> concatenated/forward.listed.${global_condition.inputs[$file]['forward'].ext}.listed && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
82 $concat_command $global_condition.inputs[$file]['forward'] >> concatenated/forward.listed.${global_condition.inputs[$file]['forward'].ext}.listed && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
83 printf "# ${file}_reverse\n" >> concatenated/reverse.listed.${global_condition.inputs[$file]['reverse'].ext}.listed && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
84 $concat_command $global_condition.inputs[$file]['reverse'] >> concatenated/reverse.listed.${global_condition.inputs[$file]['reverse'].ext}.listed && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
85 #end if |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
86 #end for |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
87 sleep 1 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
88 #end if |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
89 #else if $global_condition.paired_cat_type == "by_pair": |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
90 mkdir concatenated && |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
91 #if $dataset_names == "No": |
4
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
92 #for $file in $global_condition.inputs.keys(): |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
93 #if $global_condition.inputs[$file]['forward'].ext[-2:] == "gz": |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
94 gzip -dc $global_condition.inputs[$file]['forward'] | $concat_command | gzip -c |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
95 > concatenated/'${file}.listed.${global_condition.inputs[$file]['reverse'].ext}.listed' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
96 gzip -dc $global_condition.inputs[$file]['reverse'] | $concat_command | gzip -c |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
97 >> concatenated/'${file}.listed.${global_condition.inputs[$file]['reverse'].ext}.listed' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
98 #else: |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
99 $concat_command $global_condition.inputs[$file]['forward'] |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
100 > concatenated/'${file}.listed.${global_condition.inputs[$file]['reverse'].ext}.listed' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
101 $concat_command $global_condition.inputs[$file]['reverse'] |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
102 >> concatenated/'${file}.listed.${global_condition.inputs[$file]['reverse'].ext}.listed' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
103 #end if |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
104 #end for |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
105 sleep 1 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
106 #else: |
4
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
107 #for $file in $global_condition.inputs.keys(): |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
108 #if $global_condition.inputs[$file]['reverse'].ext[-2:] == "gz": |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
109 printf "# ${file}_forward\n" | gzip -c > concatenated/'${file}.listed.${global_condition.inputs[$file]['reverse'].ext}.listed' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
110 gzip -dc $global_condition.inputs[$file]['forward'] | $concat_command | gzip -c |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
111 >> concatenated/'${file}.listed.${global_condition.inputs[$file]['reverse'].ext}.listed' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
112 printf "# ${file}_reverse\n" | gzip -c >> concatenated/'${file}.listed.${global_condition.inputs[$file]['reverse'].ext}.listed' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
113 gzip -dc $global_condition.inputs[$file]['reverse'] | $concat_command | gzip -c |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
114 >> concatenated/'${file}.listed.${global_condition.inputs[$file]['reverse'].ext}.listed' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
115 #else: |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
116 printf "# ${file}_forward\n" > concatenated/'${file}.listed.${global_condition.inputs[$file]['reverse'].ext}.listed' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
117 $concat_command $global_condition.inputs[$file]['forward'] |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
118 >> concatenated/'${file}.listed.${global_condition.inputs[$file]['reverse'].ext}.listed' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
119 printf "# ${file}_reverse\n" >> concatenated/'${file}.listed.${global_condition.inputs[$file]['reverse'].ext}.listed' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
120 $concat_command $global_condition.inputs[$file]['reverse'] |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
121 >> concatenated/'${file}.listed.${global_condition.inputs[$file]['reverse'].ext}.listed' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
122 #end if |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
123 #end for |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
124 sleep 1 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
125 #end if |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
126 #else if $global_condition.paired_cat_type == "all": |
4
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
127 mkdir concatenated && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
128 #set $base_name=$global_condition.inputs.element_identifier |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
129 #set $extention=$global_condition.inputs[$global_condition.inputs.keys()[0]]['forward'].ext |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
130 #if $dataset_names == "No": |
4
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
131 #for $file in $global_condition.inputs.keys(): |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
132 #if $global_condition.inputs[$file]['forward'].ext[-2:] == "gz": |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
133 gzip -dc $global_condition.inputs[$file]['forward'] | $concat_command | gzip -c >> c'$paired_out_file' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
134 gzip -dc $global_condition.inputs[$file]['reverse'] | $concat_command | gzip -c >> '$paired_out_file' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
135 #else: |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
136 $concat_command |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
137 $global_condition.inputs[$file]['forward'] |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
138 >> '$paired_out_file' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
139 $concat_command |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
140 $global_condition.inputs[$file]['reverse'] |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
141 >> '$paired_out_file' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
142 #end if |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
143 #end for |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
144 sleep 1 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
145 #else: |
4
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
146 #for $file in $global_condition.inputs.keys(): |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
147 #if $global_condition.inputs[$file]['forward'].ext[-2:] == "gz": |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
148 printf "# ${file}_forward\n" | gzip -c > '$paired_out_file' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
149 gzip -dc $global_condition.inputs[$file]['forward'] | $concat_command | gzip -c >> '$paired_out_file' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
150 printf "# ${file}_reverse\n" | gzip -c >> '$paired_out_file' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
151 gzip -dc $global_condition.inputs[$file]['reverse'] | $concat_command | gzip -c >> '$paired_out_file' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
152 #else: |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
153 printf "# ${file}_forward\n" > '$paired_out_file' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
154 $concat_command |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
155 $global_condition.inputs[$file]['forward'] |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
156 >> '$paired_out_file' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
157 printf "# ${file}_reverse\n" >> '$paired_out_file' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
158 $concat_command |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
159 $global_condition.inputs[$file]['reverse'] |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
160 >> '$paired_out_file' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
161 #end if |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
162 #end for |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
163 sleep 1 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
164 #end if |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
165 #end if |
4
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
166 #else if $global_condition.input_type == "nested_collection": |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
167 mkdir concatenated && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
168 #if $dataset_names == "No": |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
169 #for $sub_list in $global_condition.inputs: |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
170 #set $file_base_name=$sub_list.element_identifier |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
171 #for $sub_list_element in $sub_list: |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
172 #if $sub_list_element.ext[-2:] == "gz": |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
173 gzip -dc ${sub_list_element} | $concat_command | gzip -c >> concatenated/'${file_base_name}.listed.${sub_list_element.ext}.listed' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
174 #else: |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
175 $concat_command ${sub_list_element} >> concatenated/'${file_base_name}.listed.${sub_list_element.ext}.listed' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
176 #end if |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
177 #end for |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
178 #end for |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
179 sleep 1 |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
180 #else: |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
181 #for $sub_list in $global_condition.inputs: |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
182 #set $file_base_name=$sub_list.element_identifier |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
183 #for $sub_list_element in $sub_list: |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
184 #if $sub_list_element.ext[-2:] == "gz": |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
185 printf "# ${sub_list_element.element_identifier}\n" | gzip -c >> concatenated/'${file_base_name}.listed.${sub_list_element.ext}.listed' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
186 gzip -dc ${sub_list_element} | $concat_command | gzip -c >> concatenated/'${file_base_name}.listed.${sub_list_element.ext}.listed' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
187 #else: |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
188 printf "# ${sub_list_element.element_identifier}\n" >> concatenated/'${file_base_name}.listed.${sub_list_element.ext}.listed' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
189 $concat_command ${sub_list_element} >> concatenated/'${file_base_name}.listed.${sub_list_element.ext}.listed' && |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
190 #end if |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
191 #end for |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
192 #end for |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
193 sleep 1 |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
194 #end if |
0
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
195 #end if |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
196 ]]> |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
197 </command> |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
198 <inputs> |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
199 <conditional name="global_condition"> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
200 <param name="input_type" type="select" label="What type of data do you wish to concatenate?" help="Depending on the type of input selected the concatenation options will differ"> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
201 <option value="singles">Single datasets</option> |
4
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
202 <option value="simple_collections">2 Collections</option> |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
203 <option value="paired_collection">Paired collection</option> |
4
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
204 <option value="nested_collection">Nested collection</option> |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
205 </param> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
206 <when value="singles"> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
207 <param name="inputs" type="data" label="Concatenate Datasets" multiple="True" help="All inputed datasets will be concatenated tail-to-head."/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
208 </when> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
209 <when value="paired_collection"> |
3
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
210 <param name="inputs" type="data_collection" collection_type="list:paired" label="Input paired collection to concatenate"/> |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
211 <param name="paired_cat_type" type="select" label="What type of concatenation do you wish to perform?"> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
212 <option value="by_strand">Concatenate all datsets of same strand (outputs a single pair of datasets)</option> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
213 <option value="by_pair">Concatenate pairs of datasets (outputs an unpaired collection of datasets)</option> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
214 <option value="all">Concatenate all datasets into a single file regardless of strand (outputs a single file)</option> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
215 </param> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
216 </when> |
3
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
217 <when value="simple_collections"> |
4
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
218 <param name="input_1" type="data_collection" collection_type="list" label="Input first collection" help="The first collection contains the datasets that will be written first in the concatenated file" /> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
219 <param name="input_2" type="data_collection" collection_type="list" label="Input second collection" help="The second collection contains the datasets that will be written last in the concatenated file" /> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
220 </when> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
221 <when value="nested_collection"> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
222 <param name="inputs" type="data_collection" collection_type="list:list" label="Input nested collection" help="The Nested collection which items you want to concatenate." /> |
3
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
223 </when> |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
224 </conditional> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
225 <param name="dataset_names" type="boolean" label="Include dataset names?" truevalue="Yes" falsevalue="No" checked="false" help="If 'Yes' is selected '#name of dataset' will be added when concatenating."/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
226 <param name="headers" type="integer" label="Number of lines to skip at the beginning of each concatenation:" value="0" help="This paremeter exists so as to not concatenate comments or headers contained at the start of the files."/> |
0
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
227 </inputs> |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
228 <outputs> |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
229 <data name="out_file1" format_source="inputs" metadata_source="inputs" label="Concatenated datasets"> |
4
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
230 <filter>global_condition['input_type'] == 'singles'</filter> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
231 </data> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
232 <data name="paired_out_file" label="${global_condition.inputs.element_identifier}" auto_format="true"> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
233 <filter>global_condition['input_type'] == 'paired_collection' and global_condition['paired_cat_type'] == 'all'</filter> |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
234 </data> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
235 <collection name="paired_output" type="paired" label="Concatenation by strtand"> |
4
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
236 <discover_datasets pattern="(?P<name>.*)\.listed\.(?P<ext>.*)\.listed" visible="false" directory="concatenated"/> |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
237 <filter>global_condition['input_type'] == 'paired_collection' and global_condition['paired_cat_type'] == 'by_strand'</filter> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
238 </collection> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
239 <collection name="list_output" type="list" label="Concatenation by pairs"> |
4
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
240 <discover_datasets pattern="(?P<identifier_0>.*)\.listed\.(?P<ext>.*)\.listed" visible="false" directory="concatenated"/> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
241 <filter>(global_condition['input_type'] == 'paired_collection' and global_condition['paired_cat_type'] == 'by_pair') or (global_condition['input_type'] == 'simple_collections') or (global_condition['input_type'] == 'nested_collection')</filter> |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
242 </collection> |
0
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
243 </outputs> |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
244 <tests> |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
245 <!-- Single files concatenation --> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
246 <test> <!-- Test 2 single files concatenation with no other option --> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
247 <param name="input_type" value="singles" /> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
248 <param name="inputs" value="1.bed,2.bed"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
249 <param name="dataset_names" value="No" /> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
250 <param name="headers" value="0" /> |
0
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
251 <output name="out_file1" file="cat_wrapper_out1.bed"/> |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
252 </test> |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
253 <test> <!-- Test 2 single files concatenation with dataset names activated --> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
254 <param name="input_type" value="singles" /> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
255 <param name="inputs" value="1.bed,2.bed"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
256 <param name="dataset_names" value="Yes" /> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
257 <param name="headers" value="0" /> |
0
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
258 <output name="out_file1" file="cat_wrapper_out2.bed"/> |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
259 </test> |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
260 <test> <!-- Test 2 single files concatenation skipping 1 line --> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
261 <param name="input_type" value="singles" /> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
262 <param name="inputs" value="1.bed,2.bed"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
263 <param name="dataset_names" value="No" /> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
264 <param name="headers" value="1" /> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
265 <output name="out_file1" file="cat_wrapper_out3.bed"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
266 </test> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
267 <test> <!-- Test gz handling with no options --> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
268 <param name="input_type" value="singles" /> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
269 <param name="inputs" value="1_f.fastq.gz,1_r.fastq.gz"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
270 <param name="dataset_names" value="No" /> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
271 <param name="headers" value="0" /> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
272 <output name="out_file1" file="1.fastq.gz" decompress="True"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
273 </test> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
274 <test> <!-- Test gz handling with options --> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
275 <param name="input_type" value="singles" /> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
276 <param name="inputs" value="1_f.fastq.gz,1_r.fastq.gz"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
277 <param name="dataset_names" value="Yes" /> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
278 <param name="headers" value="4" /> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
279 <output name="out_file1" file="1_options.fastq.gz" decompress="True"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
280 </test> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
281 <!-- Test paired options --> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
282 <test> <!-- Test paired collection concatenation by_pair with no other option --> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
283 <param name="input_type" value="paired_collection" /> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
284 <param name="paired_cat_type" value="by_pair"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
285 <param name="inputs"> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
286 <collection type="list:paired"> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
287 <element name="2"> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
288 <collection type="paired"> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
289 <element name="forward" value="2_f.fastq"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
290 <element name="reverse" value="2_r.fastq"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
291 </collection> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
292 </element> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
293 <element name="3"> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
294 <collection type="paired"> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
295 <element name="forward" value="3_f.fastq"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
296 <element name="reverse" value="3_r.fastq"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
297 </collection> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
298 </element> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
299 <element name="4"> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
300 <collection type="paired"> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
301 <element name="forward" value="4_f.fastq"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
302 <element name="reverse" value="4_r.fastq"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
303 </collection> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
304 </element> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
305 </collection> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
306 </param> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
307 <param name="dataset_names" value="No" /> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
308 <param name="headers" value="0" /> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
309 <output_collection name="list_output" type="list" > |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
310 <element name="2" file="2.fastq"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
311 <element name="3" file="3.fastq"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
312 <element name="4" file="4.fastq"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
313 </output_collection> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
314 </test> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
315 <test> <!-- Test paired collection concatenation by_strand with no other option --> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
316 <param name="input_type" value="paired_collection" /> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
317 <param name="paired_cat_type" value="by_strand"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
318 <param name="inputs"> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
319 <collection type="list:paired"> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
320 <element name="2"> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
321 <collection type="paired"> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
322 <element name="forward" value="2_f.fastq"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
323 <element name="reverse" value="2_r.fastq"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
324 </collection> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
325 </element> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
326 <element name="3"> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
327 <collection type="paired"> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
328 <element name="forward" value="3_f.fastq"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
329 <element name="reverse" value="3_r.fastq"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
330 </collection> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
331 </element> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
332 <element name="4"> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
333 <collection type="paired"> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
334 <element name="forward" value="4_f.fastq"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
335 <element name="reverse" value="4_r.fastq"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
336 </collection> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
337 </element> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
338 </collection> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
339 </param> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
340 <param name="dataset_names" value="No" /> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
341 <param name="headers" value="0" /> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
342 <output_collection name="paired_output" type="paired" > |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
343 <element name="forward" file="f.fastq"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
344 <element name="reverse" file="r.fastq"/> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
345 </output_collection> |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
346 </test> |
3
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
347 <test> <!-- Test 2 collections concatenation --> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
348 <param name="input_type" value="simple_collections" /> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
349 <param name="collection_cat_type" value="two_collections"/> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
350 <param name="input_1"> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
351 <collection type="list"> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
352 <element name="2" value="2_f.fastq"/> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
353 <element name="3" value="3_f.fastq"/> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
354 <element name="4" value="4_f.fastq"/> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
355 </collection> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
356 </param> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
357 <param name="input_2"> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
358 <collection type="list"> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
359 <element name="2" value="2_r.fastq"/> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
360 <element name="3" value="3_r.fastq"/> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
361 <element name="4" value="4_r.fastq"/> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
362 </collection> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
363 </param> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
364 <param name="dataset_names" value="No" /> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
365 <param name="headers" value="0" /> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
366 <output_collection name="list_output" type="list" count="3" > |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
367 <element name="2" file="2.fastq"/> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
368 <element name="3" file="3.fastq"/> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
369 <element name="4" file="4.fastq"/> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
370 </output_collection> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
371 </test> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
372 <test> <!-- Test 2 collections concatenation with other options--> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
373 <param name="input_type" value="simple_collections" /> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
374 <param name="collection_cat_type" value="two_collections"/> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
375 <param name="input_1"> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
376 <collection type="list"> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
377 <element name="1_f.fastq" value="1_f.fastq.gz"/> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
378 </collection> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
379 </param> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
380 <param name="input_2"> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
381 <collection type="list"> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
382 <element name="1_r.fastq" value="1_r.fastq.gz"/> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
383 </collection> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
384 </param> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
385 <param name="dataset_names" value="Yes" /> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
386 <param name="headers" value="4" /> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
387 <output_collection name="list_output" type="list" count="1" > |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
388 <element name="1_f.fastq_1_r.fastq" file="1_options.fastq.gz" decompress="True"/> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
389 </output_collection> |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
390 </test> |
4
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
391 <test> <!-- Test nested collections concatenation --> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
392 <param name="input_type" value="nested_collection" /> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
393 <param name="inputs"> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
394 <collection type="list:list"> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
395 <element name="2"> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
396 <collection type="list"> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
397 <element name="2_f" value="2_f.fastq" ftype="fastq"/> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
398 <element name="2_r" value="2_r.fastq" ftype="fastq"/> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
399 </collection> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
400 </element> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
401 <element name="3"> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
402 <collection type="list"> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
403 <element name="3" value="3.fastq" ftype="fastq"/> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
404 </collection> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
405 </element> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
406 </collection> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
407 </param> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
408 <param name="dataset_names" value="No" /> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
409 <param name="headers" value="0" /> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
410 <output_collection name="list_output" type="list" count="2" > |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
411 <element name="2" file="2.fastq"/> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
412 <element name="3" file="3.fastq"/> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
413 </output_collection> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
414 </test> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
415 <test> <!-- Test nested collections concatenation with options and gzip--> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
416 <param name="input_type" value="nested_collection" /> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
417 <param name="inputs"> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
418 <collection type="list:list"> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
419 <element name="1"> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
420 <collection type="list"> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
421 <element name="1_f.fastq" value="1_f.fastq.gz" ftype="fastq.gz"/> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
422 <element name="1_r.fastq" value="1_r.fastq.gz" ftype="fastq.gz"/> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
423 </collection> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
424 </element> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
425 </collection> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
426 </param> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
427 <param name="dataset_names" value="Yes" /> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
428 <param name="headers" value="4" /> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
429 <output_collection name="list_output" type="list" count="1" > |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
430 <element name="1" file="1_options.fastq.gz" decompress="True"/> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
431 </output_collection> |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
432 </test> |
0
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
433 </tests> |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
434 <help> |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
435 |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
436 .. class:: warningmark |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
437 |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
438 **WARNING:** This tool does not check if the datasets being concatenated are in the same format. |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
439 |
4
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
440 **WARNING:** When concatenating 2 collections make sure the first collection is the one with the most items. |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
441 |
4
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
442 **WARNING:** This tool can't handle nested collection deeper than list:list. |
3
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
443 |
0
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
444 ----- |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
445 |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
446 **What it does** |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
447 |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
448 Concatenates datasets and paired collections with multiple options: |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
449 |
3
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
450 - When the input is a paired collection: |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
451 |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
452 - concatenation by strand : forward and reverse datasets are concatenated separately and a list with a single forward - reverse dataset pair is returned |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
453 |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
454 - concatenation by pair : forward - reverse dataset pairs are concatenated and a simple dataset collection is returned |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
455 |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
456 - whole collection concatenation : all datasets in the collection are concatenated and a single dataset is returned |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
457 |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
458 - When the inputs are 2 collections: datasets are concatenated in a pairwise combination and a single dataset collection is returned |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
459 |
4
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
460 - When nested collection concatenation: datasets in each sub-collection are concatenated and a simple dataset collection is returned |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
461 |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
462 - Skipping lines before concatenation to avoid headers |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
463 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
464 - Add the name of the concatenated files as separator |
0
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
465 |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
466 ----- |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
467 |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
468 **Single datasets concatenation example** |
0
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
469 |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
470 Concatenating Dataset:: |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
471 |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
472 chrX 151087187 151087355 A 0 - |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
473 chrX 151572400 151572481 B 0 + |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
474 |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
475 with Dataset1:: |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
476 |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
477 chr1 151242630 151242955 X 0 + |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
478 chr1 151271715 151271999 Y 0 + |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
479 chr1 151278832 151279227 Z 0 - |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
480 |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
481 and with Dataset2:: |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
482 |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
483 chr2 100000030 200000955 P 0 + |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
484 chr2 100000015 200000999 Q 0 + |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
485 |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
486 will result in the following:: |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
487 |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
488 chrX 151087187 151087355 A 0 - |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
489 chrX 151572400 151572481 B 0 + |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
490 chr1 151242630 151242955 X 0 + |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
491 chr1 151271715 151271999 Y 0 + |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
492 chr1 151278832 151279227 Z 0 - |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
493 chr2 100000030 200000955 P 0 + |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
494 chr2 100000015 200000999 Q 0 + |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
495 |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
496 ----- |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
497 |
3
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
498 **2 Collections concatenation** |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
499 |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
500 1rst collection:: |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
501 |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
502 a |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
503 b |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
504 c |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
505 d |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
506 |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
507 2nd collection:: |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
508 |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
509 1 |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
510 2 |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
511 3 |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
512 4 |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
513 |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
514 Concatenation result:: |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
515 |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
516 A single collection containing: |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
517 |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
518 a concatenated with 1 |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
519 b concatenated with 2 |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
520 c concatenated with 3 |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
521 d concatenated with 4 |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
522 |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
523 ----- |
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
524 |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
525 **Paired collection concatenation example** |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
526 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
527 1rst pair:: |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
528 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
529 forward - reverse |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
530 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
531 2nd pair:: |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
532 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
533 forward - reverse |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
534 |
3
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
535 - Concatenation by strand:: |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
536 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
537 concatenates: |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
538 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
539 1rst forward + 2nd forward |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
540 1rst reverse + 2nd reverse |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
541 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
542 outputs: |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
543 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
544 1 pair |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
545 |
3
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
546 - Concatenation by pair:: |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
547 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
548 concatenates: |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
549 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
550 1rst forward + 1rst reverse |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
551 2nd forward + 2nd reverse |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
552 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
553 outputs: |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
554 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
555 2 datasets |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
556 |
3
62aebaf6cfa0
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 64e9762ab35b04bb0d151e441baa2fae8bf2cb4a
artbio
parents:
2
diff
changeset
|
557 - Concatenate all:: |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
558 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
559 concatenates: |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
560 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
561 1rst forward + 1rst reverse + 2nd forward + 2nd reverse |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
562 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
563 outputs: |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
564 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
565 1 dataset |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
566 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
567 ----- |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
568 |
4
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
569 **Nested collection concatenation example** |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
570 |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
571 Nested collection: |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
572 |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
573 - Experiment |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
574 |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
575 - Sample_1 |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
576 |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
577 - Sample_1_file_1 |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
578 - Sample_1_file_2 |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
579 |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
580 - Sample_2 |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
581 |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
582 - Sample_2_file_1 |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
583 - Sample_2_file_2 |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
584 - Sample_2_file_3 |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
585 |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
586 Concatenation result:: |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
587 |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
588 A single collection containing: |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
589 |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
590 - Sample_1: (Sample_1_file_1 + Sample_1_file_2) |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
591 - Sample_2: (Sample_2_file_1 + Sample_2_file_2 + Sample_2_file_3) |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
592 |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
593 ----- |
7afc0515a307
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 4b572d4605dfc1d5cfe2b46c9f0061d041e63df9
artbio
parents:
3
diff
changeset
|
594 |
1
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
595 **When selecting "Include dataset names" when concatenating files**: |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
596 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
597 1rst file name="first_tabular":: |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
598 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
599 chrX 151087187 151087355 A 0 - |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
600 chrX 151572400 151572481 B 0 + |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
601 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
602 2nd file name="second_tabular":: |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
603 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
604 chr1 151242630 151242955 X 0 + |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
605 chr1 151271715 151271999 Y 0 + |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
606 chr1 151278832 151279227 Z 0 - |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
607 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
608 output:: |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
609 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
610 # first_tabular |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
611 chrX 151087187 151087355 A 0 - |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
612 chrX 151572400 151572481 B 0 + |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
613 # second_tabular |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
614 chr1 151242630 151242955 X 0 + |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
615 chr1 151271715 151271999 Y 0 + |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
616 chr1 151278832 151279227 Z 0 - |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
617 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
618 ----- |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
619 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
620 **Skiping lines** |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
621 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
622 1rst file:: |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
623 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
624 chrX 151087187 151087355 A 0 - |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
625 chrX 151572400 151572481 B 0 + |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
626 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
627 2nd file:: |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
628 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
629 chr1 151242630 151242955 X 0 + |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
630 chr1 151271715 151271999 Y 0 + |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
631 chr1 151278832 151279227 Z 0 - |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
632 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
633 skipping 1 line |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
634 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
635 output:: |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
636 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
637 chrX 151572400 151572481 B 0 + |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
638 chr1 151271715 151271999 Y 0 + |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
639 chr1 151278832 151279227 Z 0 - |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
640 |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
641 ----- |
3a4694d4354f
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 618a7892f6af26278364a75ab23b3c6d8cdc73db
artbio
parents:
0
diff
changeset
|
642 |
0
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
643 Adapted from galaxy's catWrapper.xml to allow multiple input files. |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
644 |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
645 </help> |
6f54dc6b37da
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/concat_multi_datasets commit 732cefeff9a38b50f23820441422d4df3974b922
artbio
parents:
diff
changeset
|
646 </tool> |