Mercurial > repos > iuc > yahs
annotate yahs.xml @ 5:c4b9b2d57fe1 draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
| author | iuc |
|---|---|
| date | Wed, 17 Sep 2025 06:27:53 +0000 |
| parents | d802668bc0fe |
| children |
| rev | line source |
|---|---|
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
1 <tool id="yahs" name="YAHS" version="@VERSION@+galaxy@VERSION_SUFFIX@" profile="20.01"> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
2 <description>yet another HI-C scaffolding tool</description> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
3 <macros> |
|
3
097cd2f4f226
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 968382ccb84765d3e8a6e67c43f095a8cc5ab8f5
iuc
parents:
2
diff
changeset
|
4 <token name="@VERSION@">1.2a.2</token> |
|
5
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
5 <token name="@VERSION_SUFFIX@">3</token> |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
6 </macros> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
7 <requirements> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
8 <requirement type="package" version="@VERSION@">yahs</requirement> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
9 <requirement type="package" version="1.11">samtools</requirement> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
10 <requirement type="package" version="3.9">python</requirement> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
11 </requirements> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
12 <command detect_errors="exit_code"><![CDATA[ |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
13 #if $function.function_select == "yahs": |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
14 ln -s '$function.fasta' input.fasta && |
|
5
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
15 ln -s '$function.bfile' input.$function.bfile.ext && |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
16 #if $function.agp: |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
17 ln -s '$function.agp' input.agp && |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
18 #end if |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
19 samtools faidx input.fasta && |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
20 mkdir initial_break agp_out agp_break final_outs && |
|
5
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
21 yahs --no-mem-check input.fasta input.$function.bfile.ext |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
22 #if $agp: |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
23 -a input.agp |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
24 #end if |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
25 #if $function.res: |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
26 -r $function.res |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
27 #end if |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
28 #if $function.enzyme_conditional.enzyme_options == 'preconfigured': |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
29 #if $function.enzyme_conditional.preconfigured_enzymes == 'dovetail' |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
30 -e 'GATC' |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
31 #else if $function.enzyme_conditional.preconfigured_enzymes == 'arima1' |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
32 -e 'GATC,GANTC' |
|
4
d802668bc0fe
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit be65e1846c9d4d63e80c01625e6e5f0d613948fe
iuc
parents:
3
diff
changeset
|
33 #else if $function.enzyme_conditional.preconfigured_enzymes == 'arima2' |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
34 -e 'GATC,GANTC,CTNAG,TTAA' |
|
4
d802668bc0fe
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit be65e1846c9d4d63e80c01625e6e5f0d613948fe
iuc
parents:
3
diff
changeset
|
35 #else if $function.enzyme_conditional.preconfigured_enzymes == 'omnic' |
|
d802668bc0fe
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit be65e1846c9d4d63e80c01625e6e5f0d613948fe
iuc
parents:
3
diff
changeset
|
36 |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
37 #end if |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
38 #else if $function.enzyme_conditional.enzyme_options == 'specific': |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
39 -e '${function.enzyme_conditional.manual_enzyme}' |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
40 #end if |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
41 #if $function.length: |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
42 -l $function.length |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
43 #end if |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
44 #if $function.quality: |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
45 -q $function.quality |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
46 #end if |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
47 $function.no_contig_ec |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
48 $function.no_scaffold_ec |
|
2
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
49 -o yahs_out |
|
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
50 #if $log_out |
|
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
51 2> output.log |
|
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
52 #end if |
|
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
53 && ls -lah && |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
54 python '$__tool_directory__/move_files.py' |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
55 && ls -lah ./* |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
56 #else: |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
57 ln -s '$function.fasta' input.fasta && |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
58 ln -s '$function.agp' input.agp && |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
59 agp_to_fasta input.agp input.fasta |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
60 #if $function.length: |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
61 -l $function.length |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
62 #end if |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
63 -o output.fasta |
|
2
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
64 #if $log_out: |
|
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
65 2> output.log |
|
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
66 #end if |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
67 #end if |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
68 ]]></command> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
69 <inputs> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
70 <conditional name="function"> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
71 <param name="function_select" type="select" label="Which function would you like to run?"> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
72 <option value="yahs">YAHS</option> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
73 <option value="agp_to_fasta">AGP to fasta</option> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
74 </param> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
75 <when value="yahs"> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
76 <param name="fasta" type="data" format="fasta" label="Input contig sequences"/> |
|
5
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
77 <param name="bfile" type="data" format="bam,bed,qname_sorted.bam,unsorted.bam" label="Alignment file of Hi-C reads to contigs. NOTE: The input BAM could either be sorted by read names (qname_sorted.bam) or not. The behaviours of the program are slightly different, which might lead to slightly different scaffolding results. For a BAM input sorted by read names, with each mapped read pair, a Hi-C link is counted between the middle positions of the read alignments; while for a BAM input sorted by coordinates or unsorted, Hi-C links are counted between the start positions of the read alignments. Also, for a BAM input not sorted by read names, the mapping quality filtering is suppressed (-q option). If a bed file is provided: the BAM file used to genereate BED file need to be filtered out unmapped reads, supplementary/secondary alignment records, and PCR/optical duplicates, and sorted by read names (otherwise the resulted BED file need to be sorted by the read name column)."/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
78 <param name="agp" argument="-a" type="data" format="agp" optional="true" label="Input AGP file (for rescaffolding)" help="You can specify a AGP format file to ask YaHS to do scaffolding with the scaffolds in the AGP file as the start point"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
79 <param name="res" argument="-r" type="text" label="Resolutions" optional="true" help="Comma separated, ascending list of range of resolutions with no spaces. Ex. 50000,100000,200000,500000,1000000,2000000,5000000. By default and the upper limit is automatically adjusted with the genome size"> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
80 <validator type="regex" message="Only Numbers and commas can be used in to define the list of range of resolutions.">^\d+(,\d+)*$</validator> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
81 </param> |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
82 <conditional name="enzyme_conditional"> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
83 <param name="enzyme_options" type="select" label="Restriction enzyme used in Hi-C experiment" help="Hi-C experiments can use different restriction enzymes. |
|
5
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
84 The enzyme frequency in contigs is used to normalize the Hi-C interaction frequency. Note that you need to specify the actual |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
85 sequence of the cutting site for a restriction enzyme and not the enzyme name. You can also specify DNASE as an enzyme if you |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
86 use an enzyme-free prep, e.g. Omni-C."> |
|
2
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
87 <option value="not_specified">Not specified</option> |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
88 <option value="preconfigured">Preconfigured restriction enzymes</option> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
89 <option value="specific">Enter a specific sequence</option> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
90 </param> |
|
2
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
91 <when value="not_specified"/> |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
92 <when value="preconfigured"> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
93 <param name="preconfigured_enzymes" argument="-e" type="select" label="Preconfigured enzymes"> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
94 <option value="dovetail">Dovetail Chicago, Dovetail Hi-C or Phase: GATC</option> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
95 <option value="arima1">Arima Hi-C 1.0: GATC, GANTC</option> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
96 <option value="arima2">Arima Hi-C 2.0: GATC, GANTC, CTNAG, TTAA</option> |
|
4
d802668bc0fe
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit be65e1846c9d4d63e80c01625e6e5f0d613948fe
iuc
parents:
3
diff
changeset
|
97 <option value="omnic">Dovetail Omni-C: enzyme-free prep</option> |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
98 </param> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
99 </when> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
100 <when value="specific"> |
|
5
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
101 <param name="manual_enzyme" argument="-e" type="text" label="Restriction enzyme sequence(s)" help="Restriction enzyme sequence. If multiple were used, include all as a comma separated list without spaces (ex. 'GATC,AAGCTT')."> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
102 <validator type="expression" message="Only alphabetical letters and the comma can be used in to define restriction enzyme sequences.">value.replace(',', '').isalpha()</validator> |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
103 </param> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
104 </when> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
105 </conditional> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
106 <param name="length" argument="-l" type="integer" label="Minimum contig length included for scaffolding" min="1" optional="true"/> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
107 <param name="quality" argument="-q" type="integer" label="Minimum read mapping quality (for BAM input only)" min="1" optional="true"/> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
108 <param argument="--no-contig-ec" type="boolean" label="Skip assembly error correction step" truevalue="--no-contig-ec" falsevalue="" help="Automatically active if AGP output is set"/> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
109 <param argument="--no-scaffold-ec" type="boolean" label="Skip assembly/scaffolding error check each round" truevalue="--no-scaffold-ec" falsevalue="" help="Will also prevent any break.agp output files"/> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
110 </when> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
111 <when value="agp_to_fasta"> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
112 <param name="agp" type="data" format="agp" label="Input AGP file"/> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
113 <param name="fasta" type="data" format="fasta" label="Contig fasta file"/> |
|
5
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
114 <param name="length" type="integer" label="Output fasta line length" value="60" min="1"/> |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
115 </when> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
116 </conditional> |
|
2
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
117 <param name="log_out" type="boolean" label="Output log file?" truevalue="yes" falsevalue="no"/> |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
118 </inputs> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
119 <outputs> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
120 <!-- INITIAL ROUNDS --> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
121 <collection name="initial_agp_break" type="list" label="${tool.name} on ${on_string}: AGP initial break files"> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
122 <filter>function['function_select'] == "yahs"</filter> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
123 <discover_datasets pattern="__name_and_ext__" directory="initial_break" ext="agp"/> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
124 </collection> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
125 <collection name="agp_break" type="list" label="${tool.name} on ${on_string}: AGP break files"> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
126 <filter> function['function_select'] == "yahs"</filter> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
127 <discover_datasets pattern="__name_and_ext__" directory="agp_break" ext="agp"/> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
128 </collection> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
129 <collection name="agp_out" type="list" label="${tool.name} on ${on_string}: AGP scaffolding results files"> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
130 <filter>function['function_select'] == "yahs"</filter> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
131 <discover_datasets pattern="__name_and_ext__" directory="agp_out" ext="agp"/> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
132 </collection> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
133 <!-- FINAL FILES --> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
134 <data format="agp" name="final_agp_out" label="${tool.name} on ${on_string}: Final scaffolds agp output" from_work_dir="final_outs/yahs_out_scaffolds_final.agp"> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
135 <filter>function['function_select'] == "yahs"</filter> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
136 </data> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
137 <data format="fasta" name="final_fasta_out" label="${tool.name} on ${on_string}: Final scaffolds fasta output" from_work_dir="final_outs/yahs_out_scaffolds_final.fa"> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
138 <filter>function['function_select'] == "yahs"</filter> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
139 </data> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
140 <data format="fasta" name="fasta_from_agp" label="${tool.name} on ${on_string}: agp to fasta" from_work_dir="output.fasta"> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
141 <filter>function['function_select'] == "agp_to_fasta"</filter> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
142 </data> |
|
2
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
143 <data format="txt" name="log_file" from_work_dir="output.log" label="${tool.name} ${on_string}, log file"> |
|
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
144 <filter>log_out</filter> |
|
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
145 </data> |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
146 </outputs> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
147 <tests> |
|
3
097cd2f4f226
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 968382ccb84765d3e8a6e67c43f095a8cc5ab8f5
iuc
parents:
2
diff
changeset
|
148 <!-- TEST 1 --> |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
149 <test expect_num_outputs="5"> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
150 <conditional name="function"> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
151 <param name="function_select" value="yahs"/> |
|
5
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
152 <param name="fasta" value="test.fasta" ftype="fasta"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
153 <param name="bfile" value="test.bed" ftype="bed" /> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
154 <param name="agp" value="test.agp" ftype="agp"/> |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
155 <param name="res" value="50000,100000,150000,2000000,1000000"/> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
156 </conditional> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
157 <output name="final_agp_out" file="test_01_scaffolds_final.agp" ftype="agp"/> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
158 <output name="final_fasta_out" file="test_01_scaffolds_final.fa" ftype="fasta"/> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
159 <!-- COMMAND: yahs test.fasta test.bed -r 50000,100000,150000,2000000,1000000 -a test.agp -o test_1 --> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
160 </test> |
|
3
097cd2f4f226
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 968382ccb84765d3e8a6e67c43f095a8cc5ab8f5
iuc
parents:
2
diff
changeset
|
161 <!-- TEST 2 --> |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
162 <test expect_num_outputs="5"> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
163 <conditional name="function"> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
164 <param name="function_select" value="yahs"/> |
|
5
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
165 <param name="fasta" value="test.fasta" ftype="fasta"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
166 <param name="bfile" value="test.bed" ftype="bed"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
167 <param name="no_contig_ec" value="true"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
168 <param name="no_scaffold_ec" value="true"/> |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
169 </conditional> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
170 <output name="final_agp_out" file="test_02_scaffolds_final.agp" ftype="agp"/> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
171 <output name="final_fasta_out" file="test_02_scaffolds_final.fa" ftype="fasta"/> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
172 <output_collection name="agp_break"> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
173 <element name="yahs_out_no_break" file="test_02_no_break.agp" ftype="agp"/> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
174 </output_collection> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
175 <!-- COMMAND: yahs test.fasta test.bed -\-no-contig-ec -\-no-scaffold-ec -o test_2 --> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
176 </test> |
|
3
097cd2f4f226
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 968382ccb84765d3e8a6e67c43f095a8cc5ab8f5
iuc
parents:
2
diff
changeset
|
177 <!-- TEST 3 --> |
|
097cd2f4f226
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 968382ccb84765d3e8a6e67c43f095a8cc5ab8f5
iuc
parents:
2
diff
changeset
|
178 <test expect_num_outputs="6"> |
|
097cd2f4f226
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 968382ccb84765d3e8a6e67c43f095a8cc5ab8f5
iuc
parents:
2
diff
changeset
|
179 <conditional name="function"> |
|
097cd2f4f226
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 968382ccb84765d3e8a6e67c43f095a8cc5ab8f5
iuc
parents:
2
diff
changeset
|
180 <param name="function_select" value="yahs"/> |
|
5
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
181 <param name="fasta" value="test2.fasta" ftype="fasta"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
182 <param name="bfile" value="test2.bam" ftype="bam"/> |
|
3
097cd2f4f226
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 968382ccb84765d3e8a6e67c43f095a8cc5ab8f5
iuc
parents:
2
diff
changeset
|
183 <param name="res" value="1000,2000,5000,10000,20000,50000,100000,200000,500000"/> |
|
097cd2f4f226
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 968382ccb84765d3e8a6e67c43f095a8cc5ab8f5
iuc
parents:
2
diff
changeset
|
184 <conditional name="enzyme_conditional"> |
|
097cd2f4f226
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 968382ccb84765d3e8a6e67c43f095a8cc5ab8f5
iuc
parents:
2
diff
changeset
|
185 <param name="enzyme_options" value="not_specified"/> |
|
097cd2f4f226
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 968382ccb84765d3e8a6e67c43f095a8cc5ab8f5
iuc
parents:
2
diff
changeset
|
186 </conditional> |
|
097cd2f4f226
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 968382ccb84765d3e8a6e67c43f095a8cc5ab8f5
iuc
parents:
2
diff
changeset
|
187 </conditional> |
|
097cd2f4f226
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 968382ccb84765d3e8a6e67c43f095a8cc5ab8f5
iuc
parents:
2
diff
changeset
|
188 <param name="log_out" value="yes"/> |
|
5
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
189 <output name="log_file" ftype="txt"> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
190 <assert_contents> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
191 <has_text text="[I::dump_links_from_bam_file] dumped 6399 read pairs from 17675 records: 6297 intra links + 102 inter links"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
192 </assert_contents> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
193 </output> |
|
3
097cd2f4f226
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 968382ccb84765d3e8a6e67c43f095a8cc5ab8f5
iuc
parents:
2
diff
changeset
|
194 <!-- COMMAND: yahs test.fasta test.bam -r 1000,2000,5000,10000,20000,50000,100000,200000,500000 -o test_3 --> |
|
097cd2f4f226
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 968382ccb84765d3e8a6e67c43f095a8cc5ab8f5
iuc
parents:
2
diff
changeset
|
195 </test> |
|
097cd2f4f226
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 968382ccb84765d3e8a6e67c43f095a8cc5ab8f5
iuc
parents:
2
diff
changeset
|
196 <!-- TEST 4 --> |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
197 <test expect_num_outputs="5"> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
198 <conditional name="function"> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
199 <param name="function_select" value="yahs"/> |
|
5
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
200 <param name="fasta" value="test2.fasta" ftype="fasta"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
201 <param name="bfile" value="test2.bed" ftype="bed"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
202 <param name="quality" value="10"/> |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
203 <param name="length" value="20"/> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
204 <conditional name="enzyme_conditional"> |
|
3
097cd2f4f226
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 968382ccb84765d3e8a6e67c43f095a8cc5ab8f5
iuc
parents:
2
diff
changeset
|
205 <param name="enzyme_options" value="not_specified"/> |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
206 </conditional> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
207 </conditional> |
|
3
097cd2f4f226
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 968382ccb84765d3e8a6e67c43f095a8cc5ab8f5
iuc
parents:
2
diff
changeset
|
208 <output name="final_agp_out" file="test_04_scaffolds_final.agp" ftype="agp"/> |
|
097cd2f4f226
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 968382ccb84765d3e8a6e67c43f095a8cc5ab8f5
iuc
parents:
2
diff
changeset
|
209 <output name="final_fasta_out" file="test_04_scaffolds_final.fa" ftype="fasta"/> |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
210 <output_collection name="initial_agp_break"> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
211 <element name="yahs_out_inital_break_01" file="test_04_initial_break.agp" ftype="agp"/> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
212 </output_collection> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
213 </test> |
|
3
097cd2f4f226
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 968382ccb84765d3e8a6e67c43f095a8cc5ab8f5
iuc
parents:
2
diff
changeset
|
214 <!-- TEST 5 --> |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
215 <test expect_num_outputs="1"> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
216 <conditional name="function"> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
217 <param name="function_select" value="agp_to_fasta"/> |
|
5
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
218 <param name="fasta" value="test.fasta" ftype="fasta"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
219 <param name="agp" value="test.agp" ftype="agp"/> |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
220 <param name="length" value="20"/> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
221 </conditional> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
222 <output name="fasta_from_agp" file="test_05.fasta" ftype="fasta"/> |
|
2
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
223 <!-- COMMAND: agp_to_fasta test.fasta test.agp -l 20 -o test_4 --> |
|
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
224 </test> |
|
3
097cd2f4f226
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 968382ccb84765d3e8a6e67c43f095a8cc5ab8f5
iuc
parents:
2
diff
changeset
|
225 <!-- TEST 6 --> |
|
2
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
226 <test expect_num_outputs="6"> |
|
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
227 <conditional name="function"> |
|
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
228 <param name="function_select" value="yahs"/> |
|
5
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
229 <param name="fasta" value="test.fasta" ftype="fasta"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
230 <param name="bfile" value="test.bed" ftype="bed"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
231 <param name="agp" value="test.agp" ftype="agp"/> |
|
2
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
232 <param name="res" value="50000,100000,150000,2000000,1000000"/> |
|
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
233 </conditional> |
|
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
234 <param name="log_out" value="yes"/> |
|
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
235 <output name="final_agp_out" file="test_01_scaffolds_final.agp" ftype="agp"/> |
|
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
236 <output name="final_fasta_out" file="test_01_scaffolds_final.fa" ftype="fasta"/> |
|
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
237 <output name="log_file" ftype="txt"> |
|
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
238 <assert_contents> |
|
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
239 <has_text text="[I::main] CMD: yahs"/> |
|
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
240 </assert_contents> |
|
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
241 </output> |
|
8e2d21da6142
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 73f497e595363dea7f041a4374c3a9518e7b9862
iuc
parents:
1
diff
changeset
|
242 <!-- COMMAND: yahs test.fasta test.bed -r 50000,100000,150000,2000000,1000000 -a test.agp -o test_1 --> |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
243 </test> |
|
4
d802668bc0fe
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit be65e1846c9d4d63e80c01625e6e5f0d613948fe
iuc
parents:
3
diff
changeset
|
244 <!-- TEST 7: omnic prep --> |
|
d802668bc0fe
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit be65e1846c9d4d63e80c01625e6e5f0d613948fe
iuc
parents:
3
diff
changeset
|
245 <test expect_num_outputs="6"> |
|
d802668bc0fe
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit be65e1846c9d4d63e80c01625e6e5f0d613948fe
iuc
parents:
3
diff
changeset
|
246 <conditional name="function"> |
|
d802668bc0fe
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit be65e1846c9d4d63e80c01625e6e5f0d613948fe
iuc
parents:
3
diff
changeset
|
247 <param name="function_select" value="yahs"/> |
|
5
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
248 <param name="fasta" value="test.fasta" ftype="fasta"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
249 <param name="bfile" value="test.bed" ftype="bed"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
250 <conditional name="enzyme_conditional"> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
251 <param name="enzyme_options" value="preconfigured"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
252 <param name="preconfigured_enzymes" value="omnic"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
253 </conditional> |
|
4
d802668bc0fe
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit be65e1846c9d4d63e80c01625e6e5f0d613948fe
iuc
parents:
3
diff
changeset
|
254 </conditional> |
|
d802668bc0fe
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit be65e1846c9d4d63e80c01625e6e5f0d613948fe
iuc
parents:
3
diff
changeset
|
255 <param name="log_out" value="yes"/> |
|
d802668bc0fe
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit be65e1846c9d4d63e80c01625e6e5f0d613948fe
iuc
parents:
3
diff
changeset
|
256 <output name="log_file" ftype="txt"> |
|
d802668bc0fe
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit be65e1846c9d4d63e80c01625e6e5f0d613948fe
iuc
parents:
3
diff
changeset
|
257 <assert_contents> |
|
d802668bc0fe
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit be65e1846c9d4d63e80c01625e6e5f0d613948fe
iuc
parents:
3
diff
changeset
|
258 <not_has_text text="-e"/> |
|
d802668bc0fe
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit be65e1846c9d4d63e80c01625e6e5f0d613948fe
iuc
parents:
3
diff
changeset
|
259 </assert_contents> |
|
d802668bc0fe
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit be65e1846c9d4d63e80c01625e6e5f0d613948fe
iuc
parents:
3
diff
changeset
|
260 </output> |
|
d802668bc0fe
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit be65e1846c9d4d63e80c01625e6e5f0d613948fe
iuc
parents:
3
diff
changeset
|
261 </test> |
|
5
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
262 <!-- TEST 8: qname_sorted--> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
263 <test expect_num_outputs="6"> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
264 <conditional name="function"> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
265 <param name="function_select" value="yahs"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
266 <param name="fasta" value="test2.fasta" ftype="fasta"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
267 <param name="bfile" value="test3.qname_sorted.bam" ftype="qname_sorted.bam"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
268 <param name="res" value="1000,2000,5000,10000,20000,50000,100000,200000,500000"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
269 <conditional name="enzyme_conditional"> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
270 <param name="enzyme_options" value="not_specified"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
271 </conditional> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
272 </conditional> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
273 <param name="log_out" value="yes"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
274 <output name="log_file" ftype="txt"> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
275 <assert_contents> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
276 <has_text text="[I::dump_links_from_bam_file] dumped 6399 read pairs from 17675 records: 6399 intra links + 0 inter links"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
277 </assert_contents> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
278 </output> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
279 </test> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
280 <!-- TEST 9: unsorted--> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
281 <test expect_num_outputs="6"> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
282 <conditional name="function"> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
283 <param name="function_select" value="yahs"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
284 <param name="fasta" value="test2.fasta" ftype="fasta"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
285 <param name="bfile" value="test2.unsorted.bam" ftype="bam"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
286 <param name="res" value="1000,2000,5000,10000,20000,50000,100000,200000,500000"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
287 <conditional name="enzyme_conditional"> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
288 <param name="enzyme_options" value="not_specified"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
289 </conditional> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
290 </conditional> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
291 <param name="log_out" value="yes"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
292 <output name="log_file" ftype="txt"> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
293 <assert_contents> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
294 <has_text text="[I::dump_links_from_bam_file] dumped 6399 read pairs from 17675 records: 6297 intra links + 102 inter links"/> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
295 </assert_contents> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
296 </output> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
297 <!-- COMMAND: yahs test.fasta test.bam -r 1000,2000,5000,10000,20000,50000,100000,200000,500000 -o test_3 --> |
|
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
298 </test> |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
299 </tests> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
300 <help><![CDATA[ |
|
5
c4b9b2d57fe1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit ab918ac1eab72932e78c6e45e46d745543eac810
iuc
parents:
4
diff
changeset
|
301 YaHS is scaffolding tool using Hi-C data. It relies on a new algorithm for contig joining detection which considers the topological distribution of Hi-C signals aiming to distingush real interaction signals from mapping nosies. YaHS has been tested in a wide range of genome assemblies. Compared to other Hi-C scaffolding tools, it usually generates more contiguous scaffolds - especially with a higher N90 and L90 statistics. It is also super fast - takes less than 5 minutes to reconstruct the human genome from an assembly of 5,483 contigs with ~45X Hi-C data. |
|
0
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
302 ]]></help> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
303 <citations> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
304 <citation type="doi">10.5281/zenodo.5848772</citation> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
305 </citations> |
|
1c2056885441
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
iuc
parents:
diff
changeset
|
306 </tool> |
