Skip to content

Commit 15ebd4d

Browse files
author
Daniel Mapleson
committed
Updated example configuration files to reflect new interface.
1 parent 433513d commit 15ebd4d

File tree

3 files changed

+26
-25
lines changed

3 files changed

+26
-25
lines changed

src/main/resources/etc/example_job_configs/ecoli_full_job.xml

+14-14
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<mecq parallel="false">
3838
<ecq name="quake" tool="Quake_V0.3" libs="ecoli" threads="8" memory="30000" parallel="false"/>
3939
</mecq>
40-
<analyse_reads kmer="true" parallel="true" threads="8" memory="30000"/>
40+
<mecq_analysis kmer="true" parallel="true" threads="8" memory="30000"/>
4141
<kmer_calc threads="8" memory="20000"/>
4242
<mass parallel="true">
4343
<job name="abyss-raw" tool="ABYSS_V1.5" threads="8" memory="30000" parallel="true">
@@ -67,27 +67,27 @@
6767
</job>
6868

6969
</mass>
70-
<analyse_mass parallel="true">
70+
<mass_analysis parallel="true">
7171
<tool name="QUAST" threads="8" memory="10000"/>
7272
<tool name="KAT" threads="8" memory="30000"/>
73-
</analyse_mass>
74-
<select_mass/>
73+
</mass_analysis>
74+
<mass_select/>
7575
<amp>
7676
<stage tool="SOAP_Scaffold_V2.4" threads="8" memory="30000">
77-
<inputs>
78-
<input ecq="quake" lib="ecoli"/>
79-
</inputs>
80-
</stage>
77+
<inputs>
78+
<input ecq="quake" lib="ecoli"/>
79+
</inputs>
80+
</stage>
8181

8282
<stage tool="SOAP_GapCloser_V1.12" threads="8" memory="30000">
83-
<inputs>
84-
<input ecq="quake" lib="ecoli"/>
85-
</inputs>
86-
</stage>
83+
<inputs>
84+
<input ecq="quake" lib="ecoli"/>
85+
</inputs>
86+
</stage>
8787
</amp>
88-
<analyse_amp>
88+
<amp_analysis>
8989
<tool name="QUAST" threads="8" memory="10000"/>
90-
</analyse_amp>
90+
</amp_analysis>
9191
<finalise prefix="EcoliK12_V1"/>
9292
</pipeline>
9393

src/main/resources/etc/example_job_configs/job_config_example.xml

+6-5
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ not a file that you should for your own projects as many of the options are redu
4949
<ecq name="quake" tool="QUAKE_V0_3" libs="pe1" threads="4" memory="2000" checked_args="-k 19 -l 70"/>
5050
<ecq name="musket" tool="MUSKET_V1.0" libs="pe1" threads="6" memory="16000" checked_args="-k 19 15000000 -maxtrim 30"/>
5151
</mecq>
52-
<analyse_reads kmer="true" parallel="true" threads="4"/>
52+
<mecq_analysis kmer="true" parallel="true" threads="4"/>
5353
<mass parallel="true">
5454
<job name="abyss-raw-kmer" tool="ABYSS_V1.5" threads="16" memory="4000" parallel="true">
5555
<kmer min="61" max="75" step="MEDIUM"/>
@@ -74,10 +74,11 @@ not a file that you should for your own projects as many of the options are redu
7474
</inputs>
7575
</job>
7676
</mass>
77-
<analyse_mass threads="8" parallel="true" >
77+
<mass_analysis threads="8" parallel="true">
7878
<tool name="QUAST" threads="8" memory="4000"/>
7979
<tool name="KAT" threads="16" memory="20000"/>
80-
</analyse_mass>
80+
</mass_analysis>
81+
<mass_select/>
8182
<amp>
8283
<stage tool="SSPACE_Basic_v2.0" threads="16" memory="16000" checked_args="-m 50 -z 500">
8384
<inputs>
@@ -90,10 +91,10 @@ not a file that you should for your own projects as many of the options are redu
9091
</inputs>
9192
</stage>
9293
</amp>
93-
<analyse_amp>
94+
<amp_analysis>
9495
<tool name="QUAST" threads="8" memory="10000"/>
9596
<tool name="KAT" threads="8" memory="20000"/>
96-
</analyse_amp>
97+
</amp_analysis>
9798
<finalise prefix="Bamax_V1" min_n="20" compress="true"/>
9899
</pipeline>
99100

src/main/resources/etc/example_job_configs/rampart_test_config.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
<!-- Counts Kmers for each dataset produced, using jellyfish. Each dataset is counted in parallel, using 16
6464
threads and requesting 4GB from the scheduler for each process. This step is required if you want to compare
6565
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"/>
6767

6868
<!-- This element informs RAMPART to run kmer genie, before other assemblers are executed. For any requested
6969
DeBruijn graph assemblers requested, that do NOT have specific kmer values specified then the optimal
@@ -118,17 +118,17 @@
118118
analysis with Quast and a Kmer Analysis using KAT. Each analysis process uses 8 threads and will be executed
119119
in parallel. The user could also request CEGMA to run on each assembly at this stage, however if this
120120
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" >
122122
<tool name="QUAST" threads="8" memory="4000"/>
123123
<tool name="KAT" threads="16" memory="20000"/>
124-
</analyse_mass>
124+
</mass_analysis>
125125

126126
<!-- This step produces a finalScore for each assembly, which is based on the normalised and weighted
127127
statistics calculated from the specified types. RAMPART has its own weighting matrix for weighting each
128128
statistic but the user can specify a custom set of weights here if they prefer. RAMPART considers the
129129
assembly with the highest finalScore the best assembly, and by default this selected assembly is used as input to
130130
the next step. -->
131-
<select_mass weightings_file="path_to_custom_weights" />
131+
<mass_select weightings_file="path_to_custom_weights" />
132132

133133
<!-- Stages in this section are applied to the selected assembly from the MASS step, in an attempt to improve
134134
the selected assembly further. Each stage specified below will be executed in sequence. -->
@@ -147,11 +147,11 @@
147147
assemblies produced by AMP. Again, in this case we do a contiguity analysis with Quast and a Kmer Analysis
148148
using KAT. And again, CEGMA could also be used. For this step Quast will run for each assembly produced by
149149
AMP, and KAT will run only on the final assembly. -->
150-
<analyse_amp threads="8" parallel="true" >
150+
<amp_analysis threads="8" parallel="true" >
151151
<tool name="QUAST" threads="8" memory="4000"/>
152152
<tool name="KAT" threads="16" memory="20000"/>
153153
<!--<tool name="CEGMA" threads="16" memory="20000"/>-->
154-
</analyse_amp>
154+
</amp_analysis>
155155

156156
<!-- Renames the final assembly and fasta headers in that assembly with the prefix below. It's generally a good
157157
idea to avoid names with dots and pipes, as these can confuse some downstream applications. -->

0 commit comments

Comments
 (0)