|
63 | 63 | <!-- Counts Kmers for each dataset produced, using jellyfish. Each dataset is counted in parallel, using 16
|
64 | 64 | threads and requesting 4GB from the scheduler for each process. This step is required if you want to compare
|
65 | 65 | against kmers found in the assemblies in the MASS step below -->
|
66 |
| - <analyse_reads kmer="true" parallel="true" threads="16" memory="4000"/> |
| 66 | + <mecq_analysis kmer="true" parallel="true" threads="16" memory="4000"/> |
67 | 67 |
|
68 | 68 | <!-- This element informs RAMPART to run kmer genie, before other assemblers are executed. For any requested
|
69 | 69 | DeBruijn graph assemblers requested, that do NOT have specific kmer values specified then the optimal
|
|
118 | 118 | analysis with Quast and a Kmer Analysis using KAT. Each analysis process uses 8 threads and will be executed
|
119 | 119 | in parallel. The user could also request CEGMA to run on each assembly at this stage, however if this
|
120 | 120 | is requested please keep in mind that is can take several hours for each assembly. -->
|
121 |
| - <analyse_mass threads="8" parallel="true" > |
| 121 | + <mass_analysis threads="8" parallel="true" > |
122 | 122 | <tool name="QUAST" threads="8" memory="4000"/>
|
123 | 123 | <tool name="KAT" threads="16" memory="20000"/>
|
124 |
| - </analyse_mass> |
| 124 | + </mass_analysis> |
125 | 125 |
|
126 | 126 | <!-- This step produces a finalScore for each assembly, which is based on the normalised and weighted
|
127 | 127 | statistics calculated from the specified types. RAMPART has its own weighting matrix for weighting each
|
128 | 128 | statistic but the user can specify a custom set of weights here if they prefer. RAMPART considers the
|
129 | 129 | assembly with the highest finalScore the best assembly, and by default this selected assembly is used as input to
|
130 | 130 | the next step. -->
|
131 |
| - <select_mass weightings_file="path_to_custom_weights" /> |
| 131 | + <mass_select weightings_file="path_to_custom_weights" /> |
132 | 132 |
|
133 | 133 | <!-- Stages in this section are applied to the selected assembly from the MASS step, in an attempt to improve
|
134 | 134 | the selected assembly further. Each stage specified below will be executed in sequence. -->
|
|
147 | 147 | assemblies produced by AMP. Again, in this case we do a contiguity analysis with Quast and a Kmer Analysis
|
148 | 148 | using KAT. And again, CEGMA could also be used. For this step Quast will run for each assembly produced by
|
149 | 149 | AMP, and KAT will run only on the final assembly. -->
|
150 |
| - <analyse_amp threads="8" parallel="true" > |
| 150 | + <amp_analysis threads="8" parallel="true" > |
151 | 151 | <tool name="QUAST" threads="8" memory="4000"/>
|
152 | 152 | <tool name="KAT" threads="16" memory="20000"/>
|
153 | 153 | <!--<tool name="CEGMA" threads="16" memory="20000"/>-->
|
154 |
| - </analyse_amp> |
| 154 | + </amp_analysis> |
155 | 155 |
|
156 | 156 | <!-- Renames the final assembly and fasta headers in that assembly with the prefix below. It's generally a good
|
157 | 157 | idea to avoid names with dots and pipes, as these can confuse some downstream applications. -->
|
|
0 commit comments