annotate bionano_scaffold.xml @ 5:96cacb31d571 draft

"planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
author bgruening
date Sat, 29 May 2021 15:58:03 +0000
parents 8cc3862f8b8e
children 5d7c5ae1b69b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
1 <tool id="bionano_scaffold" name="Bionano Hybrid Scaffold" version="@TOOL_VERSION@+@GALAXY_TOOL_VERSION@" profile="20.01">
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
2 <description>automates the scaffolding process</description>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
3 <macros>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
4 <import>macros.xml</import>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
5 </macros>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
6 <expand macro="edam_ontology"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
7 <expand macro="requirements"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
8 <command detect_errors="exit_code"><![CDATA[
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
9 #set RefAligner = '/usr/local/bin/RefAligner'
4
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
10 #set output_file_NCBI = 'hybrid_scaffolds/bionano_bppAdjust_cmap_ngs_fasta_NGScontigs_HYBRID_SCAFFOLD_NCBI.fasta'
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
11 #set output_file_not_scaffolded = 'hybrid_scaffolds/bionano_bppAdjust_cmap_ngs_fasta_NGScontigs_HYBRID_SCAFFOLD_NOT_SCAFFOLDED.fasta'
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
12 ## softlinks do not work
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
13 cp '${ngs_fasta}' ./ngs.fasta
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
14 && cp '${bionano_cmap}' ./bionano.cmap
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
15 && export GALAXY_MEMORY_GB=\$((\${GALAXY_MEMORY_MB:-8192}/1024))
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
16 ## return max out of GALAXY_SLOTS and 2 --> use a minimum 2 slots
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
17 && export SLOTS=\$(( \${GALAXY_SLOTS:-2} > 2 ? \${GALAXY_SLOTS:-2} : 2 ))
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
18 #if $configuration_options.configuration == 'vgp'
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
19 && cp '${vgp_mode}' ./config.xml
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
20 && sed -i "s|__MEMORY__|\$GALAXY_MEMORY_GB|" ./config.xml
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
21 && sed -i "s|__CORES__|\$SLOTS|" ./config.xml
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
22 #else
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
23 && cp '${configuration_file}' ./config.xml
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
24 && sed -i "s|attr=\"maxmem\" val0=.* display|attr=\"maxmem\" val0=\"\$GALAXY_MEMORY_GB\" display|" ./config.xml
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
25 && sed -i "s|attr=\"maxthreads\" val0=.* display|attr=\"maxthreads\" val0=\"\$SLOTS\" display|" ./config.xml
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
26 && sed -i "s|attr=\"maxvirtmem\" val0=.*/>|attr=\"maxvirtmem\" val0=\"\$GALAXY_MEMORY_GB\"/>|" ./config.xml
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
27 && sed -i "s|attr=\"insertThreads\" val0=.*/>|attr=\"insertThreads\" val0=\"\$SLOTS\"/>|" ./config.xml
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
28 #end if
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
29 ## output the configuration file on stdout
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
30 && cat ./config.xml
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
31 && perl '/HybridScaffold/hybridScaffold.pl'
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
32 -n ./ngs.fasta
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
33 -b ./bionano.cmap
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
34 -c ./config.xml
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
35 -r $RefAligner
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
36 #if $conflict_resolution
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
37 -M '${conflict_resolution}'
4
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
38 #else
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
39 -B $conflict_filter_genome
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
40 -N $conflict_filter_sequence
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
41 #end if
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
42 ##$align_molecules_options.align_molecules
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
43 ###if $align_molecules_options.align_molecules
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
44 ## -m $align_molecules_options.bionano_molecules
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
45 ## -q '${align_molecules_options.optarguments_xml}'
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
46 ## -p ##/home/bionano/tools/pipeline/1.0/Pipeline/1.0/
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
47 ###end if
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
48 ##$quimeric_quality_options.quimeric_quality
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
49 ###if $quimeric_quality_options.quimeric_quality
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
50 ## -m $align_molecules_options.bionano_molecules
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
51 ## #if $quimeric_quality_conditional.noise_parameter
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
52 ## -e '${quimeric_quality_conditional.noise_parameter}'
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
53 ## #end if
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
54 ###end if
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
55 -f
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
56 $zip_file
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
57 -o ./
4
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
58 #if $trim_cut_sites
5
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
59 && python '$__tool_directory__/remove_fake_cut_sites.py' $output_file_NCBI 'SCAFFOLD_NCBI_trimmed.fasta' 'output.log'
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
60 && python '$__tool_directory__/remove_fake_cut_sites.py' $output_file_not_scaffolded 'NOT_SCAFFOLDED_trimmed.fasta' 'output.log'
4
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
61 #end if
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
62 ]]> </command>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
63 <configfiles>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
64 <configfile name="vgp_mode"><![CDATA[
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
65 #if $configuration_options.configuration == 'vgp'
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
66 <hybridScaffold>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
67 <version>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
68 <flag attr="version" val0="\$Id: hybridScaffold_DLE1_config.xml 7702 2018-06-25 20:53:51Z apang \$"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
69 </version>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
70 <global>
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
71 <flag attr="maxmem" val0="__MEMORY__" display="Maximum memory (GB)" group="Global options" description="Define the maximum amount of RAM in gigabytes to be used by each process."/>
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
72 <flag attr="maxthreads" val0="__CORES__" display="Max threads" group="Global options" description="Define maximum number of threads to be used by each process."/>
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
73 <flag attr="maxvirtmem" val0="__MEMORY__"/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
74 <flag attr="RAmem" val0="3" val1="1"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
75 </global>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
76 <fasta2cmap>
4
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
77 <flag attr="enzyme" val0="$configuration_options.enzyme" display="Enzyme" group="FASTA to CMAP digestion" description="Define single enzyme for in-silico FASTA to CMAP digestion. Available enzymes: BspQI, BbvCI, BsmI, BsrDI, BssSI, DLE1."/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
78 <flag attr="channelNum" val0="1" display="Channel number" group="FASTA to CMAP digestion" description="Specify the channel the enzyme was used."/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
79 <flag attr="minLabels" val0="0" display="Minimum label sites" group="FASTA to CMAP digestion" description="Specify minimum number of label sites per digested contig."/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
80 <flag attr="minLength" val0="0" display="Minimum length (Kb)" group="FASTA to CMAP digestion" description="Specify minimum length in Kb of each digested contig."/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
81 </fasta2cmap>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
82 <align0>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
83 <flag attr="M" val0="1" val1="3"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
84 <flag attr="ScaleDelta" val0="0.02" val1="15"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
85 <flag attr="ScaleDeltaBPP"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
86 <flag attr="hashScaleDelta" val0="2"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
87 <flag attr="res" val0="2.9"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
88 <flag attr="FP" val0="0.6"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
89 <flag attr="FN" val0="0.06"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
90 <flag attr="sf" val0="0.20"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
91 <flag attr="sd" val0="0.0"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
92 <flag attr="sr" val0="0.01"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
93 <flag attr="extend" val0="1"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
94 <flag attr="outlier" val0="0.0001"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
95 <flag attr="endoutlier" val0="0.001"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
96 <flag attr="PVendoutlier"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
97 <flag attr="deltaX" val0="12"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
98 <flag attr="deltaY" val0="12"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
99 <flag attr="xmapchim" val0="12"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
100 <flag attr="hashgen" val0="5" val1="7" val2="2.4" val3="1.5" val4="0.05" val5="5.0" val6="1" val7="1" val8="4"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
101 <flag attr="hash" val0="-hashdelta" val1="26" val2="10" val3="46"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
102 <flag attr="hashMultiMatch" val0="30" val1="10"/>
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
103 <flag attr="insertThreads" val0="__CORES__"/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
104 <flag attr="nosplit" val0="2"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
105 <flag attr="biaswt" val0="0"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
106 <flag attr="T" val0="1e-10" display="P-value" group="Initial alignment" description="Minimum confidence value to output initial alignments. Recommended starting value of 1e-5/genome size in Mb."/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
107 <flag attr="S" val0="-1000"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
108 <flag attr="indel"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
109 <flag attr="PVres" val0="2"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
110 <flag attr="rres" val0="0.9"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
111 <flag attr="MaxSE" val0="0.5"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
112 <flag attr="HSDrange" val0="1.0"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
113 <flag attr="outlierBC"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
114 <flag attr="xmapUnique" val0="12"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
115 <flag attr="AlignRes" val0="2."/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
116 <flag attr="outlierExtend" val0="12" val1="24"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
117 <flag attr="Kmax" val0="12"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
118 <flag attr="resEstimate"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
119 <flag attr="f"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
120 <flag attr="mres" val0="0.9"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
121 </align0>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
122 <align1>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
123 <flag attr="res" val0="2.9"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
124 <flag attr="FP" val0="0.6"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
125 <flag attr="FN" val0="0.06"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
126 <flag attr="sf" val0="0.20"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
127 <flag attr="sd" val0="0.0"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
128 <flag attr="sr" val0="0.01"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
129 <flag attr="extend" val0="1"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
130 <flag attr="outlier" val0="0.0001"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
131 <flag attr="endoutlier" val0="0.001"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
132 <flag attr="PVendoutlier"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
133 <flag attr="deltaX" val0="12"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
134 <flag attr="deltaY" val0="12"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
135 <flag attr="xmapchim" val0="12"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
136 <flag attr="hashgen" val0="5" val1="7" val2="2.4" val3="1.5" val4="0.05" val5="5.0" val6="1" val7="1" val8="4"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
137 <flag attr="hash" val0="-hashdelta" val1="26" val2="10" val3="46"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
138 <flag attr="hashMultiMatch" val0="30" val1="10"/>
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
139 <flag attr="insertThreads" val0="__CORES__"/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
140 <flag attr="nosplit" val0="2"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
141 <flag attr="biaswt" val0="0"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
142 <flag attr="T" val0="1e-10" display="P-value" group="Initial alignment" description="Minimum confidence value to output initial alignments. Recommended starting value of 1e-5/genome size in Mb."/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
143 <flag attr="S" val0="-1000"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
144 <flag attr="indel"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
145 <flag attr="PVres" val0="2"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
146 <flag attr="rres" val0="0.9"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
147 <flag attr="MaxSE" val0="0.5"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
148 <flag attr="HSDrange" val0="1.0"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
149 <flag attr="outlierBC"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
150 <flag attr="xmapUnique" val0="12"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
151 <flag attr="AlignRes" val0="2."/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
152 <flag attr="outlierExtend" val0="12" val1="24"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
153 <flag attr="Kmax" val0="12"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
154 <flag attr="resEstimate"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
155 <flag attr="f"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
156 <flag attr="mres" val0="0.9"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
157 </align1>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
158 <assignAlignType>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
159 <flag attr="T_cutoff" val0="1e-11" display="P-value" group="Chimeric/conflicting alignment flagging" description="Minimum confidence value used to flag chimeric/conflicting alignments. Recommand to set it to be the same as the merge_Tvalue below."/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
160 <flag attr="max_overhang" val0="5" display=""/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
161 </assignAlignType>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
162 <cut_conflicts>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
163 <flag attr="window_size" val0="10000" display="Distance (bp)" group="Conflict-cut" description="The distance (bp) from a conflicting site within which the chimeric quality score of BioNano genome map labels will be examined"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
164 <flag attr="min_quality_score_threshold" val0="35" display="Percent (%)" group="Conflict-cut" description="The minimal percentage of molecules spanning to the left and right of a label of interest, thus supporting the BioNano assembly at that region"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
165 <flag attr="min_coverage_threshold" val0="10" display="Coverage (X)" group="Conflict-cut" description="The minimal number of molecules aligning to a label of interest in the BioNano assembly"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
166 </cut_conflicts>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
167 <mergeNGS_BN>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
168 <flag attr="merge_Tvalue" val0="1e-11" display="P-value" group="Merging" description="Minimum confidence value used to merge alignments. Recommand to set it to be the same as the assignAlignType T_cutoff above"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
169 <flag attr="id_shift" val0="100000" display="BioNano cmap id shift" group="Merging" description="Value to shift the BioNano cmap id to distinguish the BioNano cmaps from sequence cmaps. Recommand to set it to be greater than the number of sequence entries."/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
170 <flag attr="max_merge_rounds" val0="40" display=""/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
171 <flag attr="endoutlier" val0="1e-4" display=""/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
172 <flag attr="outlier" val0="1e-4" display=""/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
173 <flag attr="biaswt" val0="0" display=""/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
174 <flag attr="sd" val0="0.1" display=""/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
175 <flag attr="res" val0="2.9" display=""/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
176 <flag attr="mres" val0="2.9" display=""/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
177 <flag attr="sf" val0="0.2" display=""/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
178 <flag attr="RepeatMask" val0="4" val1="0.01" display=""/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
179 <flag attr="RepeatRec" val0="0.7" val1="0.6" val2="1.4" display=""/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
180 <flag attr="pairmerge" val0="80" val1="0.2" display="Min alignment length and Max endoutlier" group="Merging" description="Minimum alignment length required for pair merge, and the maximum endoutlier allowed."/>
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
181 <flag attr="maxmem" val0="__MEMORY__" display=""/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
182 <flag attr="pairmergeRepeat"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
183 <flag attr="NoBpp"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
184 <flag attr="first" val0="-1" display=""/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
185 <flag attr="f"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
186 </mergeNGS_BN>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
187 <align_final_1st_pass>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
188 <flag attr="res" val0="2.9"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
189 <flag attr="FP" val0="0.6"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
190 <flag attr="FN" val0="0.06"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
191 <flag attr="sf" val0="0.20"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
192 <flag attr="sd" val0="0.0"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
193 <flag attr="sr" val0="0.01"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
194 <flag attr="extend" val0="1"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
195 <flag attr="outlier" val0="0.0001"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
196 <flag attr="endoutlier" val0="0.001"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
197 <flag attr="PVendoutlier"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
198 <flag attr="deltaX" val0="12"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
199 <flag attr="deltaY" val0="12"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
200 <flag attr="xmapchim" val0="12"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
201 <flag attr="hashgen" val0="5" val1="7" val2="2.4" val3="1.5" val4="0.05" val5="5.0" val6="1" val7="1" val8="4"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
202 <flag attr="hash" val0="-hashdelta" val1="26" val2="10" val3="46"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
203 <flag attr="hashMultiMatch" val0="30" val1="10"/>
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
204 <flag attr="insertThreads" val0="__CORES__"/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
205 <flag attr="nosplit" val0="2"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
206 <flag attr="biaswt" val0="0"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
207 <flag attr="T" val0="1e-10" display="P-value" group="Initial alignment" description="Minimum confidence value to output intial alignments. Recommended starting value of 1e-5/genome size in Mb."/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
208 <flag attr="S" val0="-1000"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
209 <flag attr="indel"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
210 <flag attr="PVres" val0="2"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
211 <flag attr="rres" val0="0.9"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
212 <flag attr="MaxSE" val0="0.5"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
213 <flag attr="HSDrange" val0="1.0"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
214 <flag attr="outlierBC"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
215 <flag attr="xmapUnique" val0="12"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
216 <flag attr="AlignRes" val0="2."/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
217 <flag attr="outlierExtend" val0="6" val1="24"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
218 <flag attr="Kmax" val0="6"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
219 <flag attr="resEstimate"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
220 <flag attr="f"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
221 <flag attr="mres" val0="0.9"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
222 <flag attr="MultiMatches" val0="5"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
223 </align_final_1st_pass>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
224 <align_final_2nd_pass>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
225 <flag attr="res" val0="2.9"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
226 <flag attr="FP" val0="0.6"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
227 <flag attr="FN" val0="0.06"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
228 <flag attr="sf" val0="0.20"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
229 <flag attr="sd" val0="0.0"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
230 <flag attr="sr" val0="0.01"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
231 <flag attr="extend" val0="1"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
232 <flag attr="outlier" val0="0.0001"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
233 <flag attr="endoutlier" val0="0.001"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
234 <flag attr="PVendoutlier"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
235 <flag attr="deltaX" val0="12"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
236 <flag attr="deltaY" val0="12"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
237 <flag attr="xmapchim" val0="12"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
238 <flag attr="hashgen" val0="5" val1="3" val2="2.4" val3="1.5" val4="0.05" val5="5.0" val6="1" val7="1" val8="4"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
239 <flag attr="hash" val0="-hashdelta" val1="50"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
240 <flag attr="hashMultiMatch" val0="30" val1="10" val2="3"/>
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
241 <flag attr="insertThreads" val0="__CORES__"/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
242 <flag attr="nosplit" val0="2"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
243 <flag attr="biaswt" val0="0"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
244 <flag attr="T" val0="1e-10" display="P-value" group="Final alignment" description="Minimum confidence score used to align NGS contigs back to hybrid scaffold."/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
245 <flag attr="S" val0="-1000"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
246 <flag attr="indel"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
247 <flag attr="PVres" val0="2"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
248 <flag attr="rres" val0="0.9"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
249 <flag attr="MaxSE" val0="0.5"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
250 <flag attr="HSDrange" val0="1.0"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
251 <flag attr="outlierBC"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
252 <flag attr="xmapUnique" val0="12"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
253 <flag attr="AlignRes" val0="2."/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
254 <flag attr="outlierExtend" val0="12" val1="24"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
255 <flag attr="Kmax" val0="12"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
256 <flag attr="resEstimate"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
257 <flag attr="f"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
258 <flag attr="mres" val0="0.9"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
259 <flag attr="MultiMatches" val0="5"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
260 </align_final_2nd_pass>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
261 <align_final_BNG>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
262 <flag attr="res" val0="2.9"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
263 <flag attr="FP" val0="0.6"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
264 <flag attr="FN" val0="0.06"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
265 <flag attr="sf" val0="0.20"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
266 <flag attr="sd" val0="0.0"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
267 <flag attr="sr" val0="0.01"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
268 <flag attr="extend" val0="1"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
269 <flag attr="outlier" val0="0.0001"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
270 <flag attr="endoutlier" val0="0.001"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
271 <flag attr="PVendoutlier"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
272 <flag attr="deltaX" val0="6"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
273 <flag attr="deltaY" val0="6"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
274 <flag attr="xmapchim" val0="12"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
275 <flag attr="hashgen" val0="5" val1="7" val2="2.4" val3="1.5" val4="0.05" val5="5.0" val6="1" val7="1" val8="4"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
276 <flag attr="hash" val0="-hashdelta" val1="26" val2="10" val3="46"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
277 <flag attr="hashMultiMatch" val0="30" val1="10"/>
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
278 <flag attr="insertThreads" val0="__CORES__"/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
279 <flag attr="nosplit" val0="2"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
280 <flag attr="biaswt" val0="0"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
281 <flag attr="T" val0="1e-10" display="P-value" group="Final alignment" description="Minimum confidence score used to align NGS contigs back to hybrid scaffold."/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
282 <flag attr="S" val0="-1000"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
283 <flag attr="indel"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
284 <flag attr="PVres" val0="2"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
285 <flag attr="rres" val0="0.9"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
286 <flag attr="MaxSE" val0="0.5"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
287 <flag attr="HSDrange" val0="1.0"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
288 <flag attr="outlierBC"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
289 <flag attr="xmapUnique" val0="14"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
290 <flag attr="AlignRes" val0="2."/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
291 <flag attr="outlierExtend" val0="6" val1="24"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
292 <flag attr="Kmax" val0="6"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
293 <flag attr="resEstimate"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
294 <flag attr="BestRef" val0="1"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
295 <flag attr="f"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
296 <flag attr="mres" val0="0.9"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
297 </align_final_BNG>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
298 <refineFinal1>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
299 <flag attr="refine" val0="1" display="Refine Map" group="Final Refinement" default0="3"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
300 <flag attr="usecolor" val0="1" default0="1" display="Color Channel" group="Final Refinement"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
301 <flag attr="A" val0="5" display="Aligned Sites Threshold" group="Final Refinement" default0="5"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
302 <flat attr="S" val0="-9"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
303 <flag attr="L" val0="130"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
304 <flag attr="maptype" val0="0"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
305 <flag attr="extend" val0="1" display="Allow Extended Molecule" group="Final Refinement" default0="1"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
306 <flag attr="MaxCov" val0="100" display="Max Coverage" group="Final Refinement" default0="100"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
307 <flag attr="Mprobeval" display="Fast Mode" group="Final Refinement"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
308 <flag attr="splitcnt"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
309 <flag attr="splitrev" val0="2"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
310 <flag attr="CmapSNR"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
311 <flag attr="splitsite"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
312 <flag attr="MinSplitLen" val0="50.0"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
313 <flag attr="MaxSE" val0="0.5"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
314 <flag attr="outlier" val0="2e-2" display="Min Outliers P-value" group="Second Refinement" default0="1e-5"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
315 <flag attr="outlierMax" val0="80."/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
316 <flag attr="outlierLambda" val0="20."/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
317 <flag attr="endoutlier" val0="1e-3" display="Molecule Ends P-value Cutoff" group="Second Refinement" default0="1e-4"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
318 <flag attr="endoutlierRef" val0="1e-4" val1="1e-3"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
319 <flag attr="skip_dist" val0="0.0" val2="0.0"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
320 <flag attr="endoutlierFinal" val0="1"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
321 <flag attr="maxEnd" val0="90."/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
322 <flag attr="RTHETA_FIX" val0="0"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
323 <flag attr="TB" val0="1e-6" val1="1e-6" val2="-TBmult" val3="0.1"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
324 <flag attr="nosplit" val0="2" display="Allow Chimeric Split" group="Final Refinement" default0="2"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
325 <flag attr="EndTrim" val0="0.0" display="Min End Trim Coverage" group="Final Refinement" default0="4.99"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
326 <flag attr="biaswt" val0="0.7" display="Bias" group="Final Refinement" default0="0"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
327 <flag attr="biaswtEnd" val0="0.0"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
328 <flag attr="biaswtRefine" val0="0.7" val2="1"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
329 <flag attr="biaswtOutlier" val0="0.0"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
330 <flag attr="LRbias" val0="1e0" display="Soft Threshold" group="Final Refinement" default0="1e2"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
331 <flag attr="deltaX" val0="6" display="Molecule Labels Metric" group="Final Refinement" default0="4"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
332 <flag attr="deltaY" val0="7" display="Mapped Labels Metric" group="Final Refinement" default0="6"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
333 <flag attr="RepeatMask" val0="5" val1="0.01" display="Repeat Mask P-values" group="Final Refinement" default0="2" default1="0.01"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
334 <flag attr="RepeatRec" val0="0.7" val1="0.6" val2="1.4"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
335 <flag attr="CovTrim" val0="2"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
336 <flag attr="CovTrimLen" val0="55"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
337 <flag attr="TrimNorm" val0="0"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
338 <flag attr="TrimNormMed" val0="100"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
339 <flag attr="TrimNormChim" val0="2"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
340 <flag attr="TrimNormMin" val0="2"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
341 <flag attr="PVres" val0="2"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
342 <flag attr="PVendoutlier"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
343 <flag attr="AlignRes" val0="1.5"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
344 <flag attr="rres" val0="1.2"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
345 <flag attr="cres" val0="5.6" val1="3" val2="0.1"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
346 <flag attr="hashgen" val00="5" val01="3" val02="2.4" val03="1.5" val04="0.05" val05="5.0" val06="1" val07="1" val08="3"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
347 <flag attr="hash" val00="-hashdelta" val01="10" val02="10" val03="-mres" val04="0.9"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
348 <flag attr="HSDrange" val0="1.0"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
349 <flag attr="hashoffset" val0="1"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
350 <flag attr="hashMultiMatch" val0="15"/>
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
351 <flag attr="insertThreads" val0="__CORES__"/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
352 <flag attr="BestRef" val0="1"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
353 <flag attr="BestRefPV" val0="1"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
354 <flag attr="ChimQuality"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
355 <flag attr="f" display="Overwrite Output Files" group="Final Refinement"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
356 <flag attr="T" val0="1e-11" display="P Value Cutoff Threshold"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
357 </refineFinal1>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
358 </hybridScaffold>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
359 #end if
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
360 ]]></configfile>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
361 </configfiles>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
362 <inputs>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
363 <param name="ngs_fasta" argument="-n" type="data" format="fasta" label="NGS FASTA" help="Input NGS FASTA"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
364 <param name="bionano_cmap" argument="-b" type="data" format="cmap" label="BioNano CMAP" help="Input BioNano CMAP"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
365 <conditional name="configuration_options">
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
366 <param name="configuration" argument="-c" type="select" label="Configuration mode" help="It defines the parameters used in each step of hybrid scaffold">
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
367 <option value="vgp">VGP mode</option>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
368 <option value="file">Select a configuration file</option>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
369 </param>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
370 <when value="vgp">
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
371 <param name="enzyme" type="text" value="CTTAAG" label="Restriction enzyme" help="Define single enzyme for in-silico FASTA to CMAP digestion. Avalible enzymes: BspQI, BbvCI, BsmI, BsrDI, BssSI, DLE1.">
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
372 <expand macro="sanitize_string" />
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
373 </param>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
374 </when>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
375 <when value="file">
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
376 <param name="configuration_file" type="data" format="xml" label="Configuration file" help="Depending on the complexity of the genome of interest, the values of certain parameters could be adjusted accordingly."/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
377 </when>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
378 </conditional>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
379 <param name="conflict_resolution" argument="-M" type="data" format="txt" optional="True" label="Conflict resolution file" help="Input a conflict resolution file indicating which NGS and BioNano conflicting contigs to be cut [optional]"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
380 <param name="conflict_filter_genome" argument="-B" type="select" label="Genome maps conflict filter" help="Conflict filter level genome maps [required if not using -M option]">
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
381 <option value="1">No filter</option>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
382 <option value="2">Cut contig at conflict</option>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
383 <option value="3">Exclude conflicting contig</option>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
384 </param>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
385 <param name="conflict_filter_sequence" argument="-N" type="select" label="Sequences conflict filter" help="Conflict filter level for sequences [required if not using -M option]">
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
386 <option value="1">No filter</option>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
387 <option value="2">Cut contig at conflict</option>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
388 <option value="3">Exclude conflicting contig</option>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
389 </param>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
390 <param name="zip_file" argument="-z" type="boolean" truevalue="-z results.zip" falsevalue="" checked="false" label="Generate an output package in ZIP format" help="The hybrid scaffold output package (.zip) can be imported into Access for visualization" />
4
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
391 <param name="trim_cut_sites" type="boolean" checked="true" label="Remove BioNano cut sites" help="This option removes the spurious BioNano cut sites that are inserted into gaps in some assemblies, replacing them with Ns." />
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
392 <!--
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
393
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
394 Those options have been disabled because the Docker container doesn't include the required packages
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
395
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
396 <conditional name="align_molecules_options">
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
397 <param name="align_molecules" type="select" label="Align molecules to hybrid scaffolds and genome maps" help="Flag to generate molecules to hybrid scaffold alignment and molecules to genome map alignment">
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
398 <option value="-x">True</option>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
399 <option value="" selected="True">False</option>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
400 </param>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
401 <when value="-x">
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
402 <param name="bionano_molecules" type="data" format="bnx" label="Bionano molecules" help="Input BioNano molecules BNX [optional; only required for either the -x or -y option]"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
403 <param name="optarguments_xml" type="data" format="xml" label="OptArguments XML script" help="Input de novo assembly pipeline optArguments XML script [optional; only required for -x option]"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
404 </when>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
405 <when value="">
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
406 </when>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
407 </conditional>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
408 <conditional name="quimeric_quality_options">
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
409 <param name="quimeric_quality" type="select" label="Generate quimeric quality score" help="Flag to generate chimeric quality score for the Input BioNano CMAP">
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
410 <option value="-y">True</option>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
411 <option value="" selected="True">False</option>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
412 </param>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
413 <when value="-y">
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
414 <param name="bionano_molecules" type="data" format="bnx" label="Bionano molecules" help="Input BioNano molecules BNX [optional; only required for either the -x or -y option]"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
415 <param name="noise_parameter" type="data" format="txt" optional="True" label="Noise parameter file" help="Input de novo assembly noise parameter .errbin or .err file [optional; recommended for -y option but not required]"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
416 </when>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
417 <when value="">
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
418 </when>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
419 </conditional>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
420 -->
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
421 </inputs>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
422 <outputs>
5
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
423 <data name="ngs_contigs_scaffold" format="fasta" from_work_dir="hybrid_scaffolds/bionano_bppAdjust_cmap_ngs_fasta_NGScontigs_HYBRID_SCAFFOLD_NCBI.fasta" label="${tool.name} on ${on_string}: NGScontigs scaffold NCBI">
4
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
424 <filter>trim_cut_sites == False</filter>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
425 </data>
5
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
426 <data name="ngs_contigs_not_scaffolded" format="fasta" from_work_dir="hybrid_scaffolds/bionano_bppAdjust_cmap_ngs_fasta_NGScontigs_HYBRID_SCAFFOLD_NOT_SCAFFOLDED.fasta" label="${tool.name} on ${on_string}: NGScontigs not scaffolded">
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
427 <filter>trim_cut_sites == False</filter>
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
428 </data>
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
429 <data name="ngs_contigs_scaffold_trimmed" format="fasta" from_work_dir="SCAFFOLD_NCBI_trimmed.fasta" label="${tool.name} on ${on_string}: NGScontigs scaffold NCBI trimmed">
4
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
430 <filter>trim_cut_sites</filter>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
431 </data>
5
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
432 <data name="ngs_contigs_not_scaffolded_trimmed" format="fasta" from_work_dir="NOT_SCAFFOLDED_trimmed.fasta" label="${tool.name} on ${on_string}: NGScontigs not scaffolded trimmed">
4
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
433 <filter>trim_cut_sites</filter>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
434 </data>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
435 <data name="report" format="txt" from_work_dir="hybrid_scaffolds/hybrid_scaffold_informatics_report.txt" label="${tool.name} on ${on_string}: hybrid scaffold report"/>
5
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
436 <data name="conflicts" format="txt" from_work_dir="hybrid_scaffolds/conflicts.txt" label="${tool.name} on ${on_string}: conflicts"/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
437 <data name="results" format="zip" from_work_dir="results.zip" label="${tool.name} on ${on_string}: results">
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
438 <filter>zip_file</filter>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
439 </data>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
440 </outputs>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
441 <tests>
5
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
442 <test expect_num_outputs="5">
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
443 <param name="ngs_fasta" value="assembly.fasta.gz"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
444 <param name="bionano_cmap" value="colormap_assembly.cmap"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
445 <param name="conflict_filter_genome" value="3"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
446 <param name="conflict_filter_sequence" value="3"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
447 <conditional name="configuration_options">
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
448 <param name="configuration" value="file"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
449 <param name="configuration_file" value="configuration.xml"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
450 </conditional>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
451 <param name="zip_file" value="true"/>
4
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
452 <param name="trim_cut_sites" value="false"/>
5
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
453 <output name="ngs_contigs_scaffold" ftype="fasta">
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
454 <assert_contents>
5
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
455 <has_size value="4753369" delta="100" />
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
456 <has_n_lines n="2"/>
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
457 <has_line line=">Super-Scaffold_1"/>
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
458 </assert_contents>
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
459 </output>
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
460 <output name="ngs_contigs_not_scaffolded" ftype="fasta">
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
461 <assert_contents>
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
462 <has_size value="0"/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
463 </assert_contents>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
464 </output>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
465 <output name="report" file="test_01_report.txt" ftype="txt"/>
5
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
466 <output name="conflicts" ftype="txt">
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
467 <assert_contents>
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
468 <has_text text="alignmentOrientation" />
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
469 </assert_contents>
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
470 </output>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
471 <output name="results" ftype="zip">
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
472 <assert_contents>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
473 <!--<has_size value="4231746" delta="300" />-->
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
474 <has_archive_member path=".*/status.txt"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
475 </assert_contents>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
476 </output>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
477 <assert_stdout>
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
478 <has_text text='attr="maxmem" val0="8"'/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
479 </assert_stdout>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
480 <assert_stdout>
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
481 <has_text text='attr="maxthreads" val0="1"'/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
482 </assert_stdout>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
483 <assert_stdout>
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
484 <has_text text='attr="insertThreads" val0="1"'/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
485 </assert_stdout>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
486 <assert_stdout>
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
487 <has_text text='attr="maxvirtmem" val0="8"'/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
488 </assert_stdout>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
489 <assert_stdout>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
490 <has_text text="hybridScaffold"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
491 </assert_stdout>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
492 </test>
5
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
493 <test expect_num_outputs="4">
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
494 <param name="ngs_fasta" value="assembly.fasta.gz"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
495 <param name="bionano_cmap" value="colormap_assembly.cmap"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
496 <param name="conflict_filter_genome" value="2"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
497 <param name="conflict_filter_sequence" value="2"/>
4
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
498 <param name="trim_cut_sites" value="false"/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
499 <conditional name="configuration_options">
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
500 <param name="configuration" value="file"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
501 <param name="configuration_file" value="configuration.xml"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
502 </conditional>
5
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
503 <output name="ngs_contigs_scaffold" ftype="fasta">
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
504 <assert_contents>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
505 <has_size value="4753369" delta="100" />
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
506 <has_n_lines n="2"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
507 <has_line line=">Super-Scaffold_1"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
508 </assert_contents>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
509 </output>
5
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
510 <output name="ngs_contigs_not_scaffolded" ftype="fasta">
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
511 <assert_contents>
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
512 <has_size value="0" />
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
513 </assert_contents>
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
514 </output>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
515 <output name="report" file="test_02_report.txt" ftype="txt"/>
5
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
516 <output name="conflicts" ftype="txt">
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
517 <assert_contents>
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
518 <has_text text="alignmentOrientation" />
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
519 </assert_contents>
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
520 </output> <assert_stdout>
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
521 <has_text text='attr="maxmem" val0="8"'/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
522 </assert_stdout>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
523 <assert_stdout>
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
524 <has_text text='attr="maxthreads" val0="1"'/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
525 </assert_stdout>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
526 <assert_stdout>
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
527 <has_text text='attr="insertThreads" val0="1"'/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
528 </assert_stdout>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
529 <assert_stdout>
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
530 <has_text text='attr="maxvirtmem" val0="8"'/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
531 </assert_stdout>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
532 <assert_stdout>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
533 <has_text text="hybridScaffold"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
534 <!--attribute_is path="hybridScaffold/global/flag[@attr='maxthreads']" attribute="val0" text="2"/-->
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
535 </assert_stdout>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
536 </test>
5
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
537 <test expect_num_outputs="5">
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
538 <param name="ngs_fasta" value="assembly.fasta.gz"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
539 <param name="bionano_cmap" value="colormap_assembly.cmap"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
540 <param name="conflict_filter_genome" value="2"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
541 <param name="conflict_filter_sequence" value="3"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
542 <conditional name="configuration_options">
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
543 <param name="configuration" value="file"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
544 <param name="configuration_file" value="configuration.xml"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
545 </conditional>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
546 <param name="zip_file" value="true"/>
4
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
547 <param name="trim_cut_sites" value="false"/>
5
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
548 <output name="ngs_contigs_scaffold" ftype="fasta">
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
549 <assert_contents>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
550 <has_size value="4753369" delta="100" />
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
551 <has_n_lines n="2"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
552 <has_line line=">Super-Scaffold_1"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
553 </assert_contents>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
554 </output>
5
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
555 <output name="ngs_contigs_not_scaffolded" ftype="fasta">
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
556 <assert_contents>
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
557 <has_size value="0"/>
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
558 </assert_contents>
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
559 </output>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
560 <output name="report" file="test_03_report.txt" ftype="txt"/>
5
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
561 <output name="conflicts" ftype="txt">
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
562 <assert_contents>
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
563 <has_text text="alignmentOrientation" />
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
564 </assert_contents>
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
565 </output>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
566 <output name="results" ftype="zip">
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
567 <assert_contents>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
568 <!--<has_size value="4231908" delta="300" />-->
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
569 <has_archive_member path=".*/status.txt"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
570 </assert_contents>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
571 </output>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
572 <assert_stdout>
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
573 <has_text text='attr="maxmem" val0="8"'/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
574 </assert_stdout>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
575 <assert_stdout>
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
576 <has_text text='attr="maxthreads" val0="1"'/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
577 </assert_stdout>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
578 <assert_stdout>
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
579 <has_text text='attr="insertThreads" val0="1"'/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
580 </assert_stdout>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
581 <assert_stdout>
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
582 <has_text text='attr="maxvirtmem" val0="8"'/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
583 </assert_stdout>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
584 <assert_stdout>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
585 <has_text text="hybridScaffold"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
586 </assert_stdout>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
587 </test>
5
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
588 <test expect_num_outputs="5">
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
589 <param name="ngs_fasta" value="assembly.fasta.gz"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
590 <param name="bionano_cmap" value="colormap_assembly.cmap"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
591 <param name="conflict_filter_genome" value="2"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
592 <param name="conflict_filter_sequence" value="3"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
593 <conditional name="configuration_options">
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
594 <param name="configuration" value="vgp"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
595 <param name="enzyme" value="BspQI"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
596 </conditional>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
597 <param name="zip_file" value="true"/>
4
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
598 <param name="trim_cut_sites" value="false"/>
5
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
599 <output name="ngs_contigs_scaffold" ftype="fasta">
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
600 <assert_contents>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
601 <has_size value="4753369" delta="100" />
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
602 <has_n_lines n="2"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
603 <has_line line=">Super-Scaffold_1"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
604 </assert_contents>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
605 </output>
5
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
606 <output name="ngs_contigs_not_scaffolded" ftype="fasta">
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
607 <assert_contents>
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
608 <has_size value="0"/>
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
609 </assert_contents>
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
610 </output>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
611 <output name="report" file="test_04_report.txt" ftype="txt"/>
5
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
612 <output name="conflicts" ftype="txt">
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
613 <assert_contents>
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
614 <has_text text="alignmentOrientation" />
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
615 </assert_contents>
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
616 </output>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
617 <output name="results" ftype="zip">
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
618 <assert_contents>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
619 <has_archive_member path=".*/status.txt"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
620 </assert_contents>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
621 </output>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
622 <assert_stdout>
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
623 <has_text text='attr="maxmem" val0="8"'/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
624 </assert_stdout>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
625 <assert_stdout>
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
626 <has_text text='attr="maxthreads" val0="1"'/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
627 </assert_stdout>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
628 <assert_stdout>
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
629 <has_text text='attr="insertThreads" val0="1"'/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
630 </assert_stdout>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
631 <assert_stdout>
3
295c0e28f4ee "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 8afc84a2ccaa084b4eedb01a0b76e4c463931db3"
bgruening
parents: 1
diff changeset
632 <has_text text='attr="maxvirtmem" val0="8"'/>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
633 </assert_stdout>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
634 <assert_stdout>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
635 <has_text text="hybridScaffold"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
636 </assert_stdout>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
637 </test>
5
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
638 <test expect_num_outputs="4">
4
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
639 <param name="ngs_fasta" value="assembly.fasta.gz"/>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
640 <param name="bionano_cmap" value="colormap_assembly.cmap"/>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
641 <param name="conflict_filter_genome" value="3"/>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
642 <param name="conflict_filter_sequence" value="3"/>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
643 <conditional name="configuration_options">
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
644 <param name="configuration" value="file"/>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
645 <param name="configuration_file" value="configuration.xml"/>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
646 </conditional>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
647 <param name="trim_cut_sites" value="true"/>
5
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
648 <output name="ngs_contigs_scaffold_trimmed" ftype="fasta">
4
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
649 <assert_contents>
5
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
650 <has_size value="4832591" delta="100" />
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
651 <has_n_lines n="79224"/>
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
652 <has_line line=">Super-Scaffold_1"/>
4
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
653 </assert_contents>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
654 </output>
5
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
655 <output name="ngs_contigs_not_scaffolded_trimmed" ftype="fasta">
4
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
656 <assert_contents>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
657 <has_size value="0" />
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
658 </assert_contents>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
659 </output>
5
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
660 <output name="conflicts" ftype="txt">
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
661 <assert_contents>
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
662 <has_text text="alignmentOrientation" />
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
663 </assert_contents>
96cacb31d571 "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 01f4a0a13563b0ae33565ddb26a8fc3a23726e03"
bgruening
parents: 4
diff changeset
664 </output>
4
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
665 <output name="report" file="test_05_report.txt" ftype="txt"/>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
666 <assert_stdout>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
667 <has_text text='attr="maxmem" val0="8"'/>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
668 </assert_stdout>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
669 <assert_stdout>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
670 <has_text text='attr="maxthreads" val0="1"'/>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
671 </assert_stdout>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
672 <assert_stdout>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
673 <has_text text='attr="insertThreads" val0="1"'/>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
674 </assert_stdout>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
675 <assert_stdout>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
676 <has_text text='attr="maxvirtmem" val0="8"'/>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
677 </assert_stdout>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
678 <assert_stdout>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
679 <has_text text="hybridScaffold"/>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
680 </assert_stdout>
8cc3862f8b8e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit a3d75aba3a21d88adb3706fbcefcaed4fbcb80fe"
bgruening
parents: 3
diff changeset
681 </test>
1
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
682 </tests>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
683 <help><![CDATA[
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
684 .. class:: infomark
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
685
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
686 **Purpose**
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
687
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
688 The Hybrid Scaffold pipeline automates the comprehensive scaffolding process and is consisted of five major steps: 1) generate in silico maps for sequence assembly; 2) align in silico sequence maps against Bionano genome maps to identify and resolve potential conflicts in either data set; 3) merge the non-conflicting maps into hybrid scaffolds; 4) align sequence maps to the hybrid scaffolds; and 5) generate AGP and FASTA files for the scaffolds.
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
689
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
690 ----
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
691
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
692 .. class:: infomark
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
693
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
694 **Coverage**
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
695
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
696 For Hybrid Scaffold, we recommend using as input a minimum of 80X effective molecule coverage in order to build an accurate and contiguous consensus genome map assembly for each enzyme. When using nickases, using more coverage does not significantly improve map contiguity. When using a DLS enzyme such as DLE-1, effective coverage up to and beyond 100X has shown improved map contiguities for some plants and animals.
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
697
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
698 ----
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
699
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
700 .. class:: infomark
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
701
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
702 **Input Bionano assembly**
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
703
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
704 When running the de novo assembly pipeline for hybrid scaffolding applications, users are recommended to use assembly parameters for non-haplotype-aware assembly. The current Hybrid Scaffold pipeline does not explicitly handle haplotype information and assumes there is only one genome map or NGS sequence contig covering a given genomic region. If multiple haplotypes are present, the pipeline may make false positive conflict cuts and incorrectly mix haplotypes in the final scaffolds. We understand that haplotype information is important in many applications, and a fully haplotype-aware Hybrid Scaffold pipeline is in our roadmap for a future release.
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
705
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
706 ----
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
707
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
708 .. class:: infomark
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
709
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
710 @BIONANO_SUPPORT_TEXT@
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
711
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
712 ]]> </help>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
713 <expand macro="citations"/>
9bd94d9a1b2e "planemo upload for repository https://bionanogenomics.com/support/software-downloads/ commit 70c17a8d4b839becfda3e41fccc6bb6a8d3a6eb0-dirty"
bgruening
parents:
diff changeset
714 </tool>