-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Making virus base config from demo configs
- We did provide demo config files for several viruses - Now they can be included with virus-base-config
- Loading branch information
Showing
6 changed files
with
24 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,75 +1,23 @@ | ||
--- | ||
name: Influenza A virus subtype H3N2 | ||
# config-file used for the analysis of H3N2 segment HA | ||
# config file was used to analysis wastewater Illumina data from SRA available | ||
# through the SRA Run accession: SRP385331 | ||
|
||
general: | ||
aligner: bwa | ||
primers_trimmer: samtools | ||
threads: 6 | ||
snv_caller: lofreq | ||
temp_prefix: ./temp | ||
preprocessor: skip | ||
|
||
input: | ||
datadir: samples/ | ||
samples_file: samples.tsv | ||
reference: "{VPIPE_BASEDIR}/../resources/h3n2_ha/h3n2_ha.fasta" | ||
genes_gff: "{VPIPE_BASEDIR}/../resources/h3n2_ha/gffs/h3n2_ha.gff3" | ||
paired: true | ||
read_length: 151 | ||
|
||
output: | ||
datadir: results/ | ||
snv: True | ||
local: True | ||
global: False | ||
visualization: False | ||
QA: False | ||
diversity: False | ||
|
||
gunzip: | ||
mem: 100000 | ||
|
||
extract: | ||
mem: 100000 | ||
|
||
preprocessing: | ||
mem: 10000 | ||
|
||
sam2bam: | ||
mem: 5000 | ||
|
||
ref_bwa_index: | ||
mem: 65536 | ||
|
||
bwa_align: | ||
mem: 40690 | ||
threads: 8 | ||
|
||
bowtie_align: | ||
mem: 12288 | ||
threads: 6 | ||
|
||
coverage: | ||
mem: 131072 | ||
threads: 32 | ||
time: 60 | ||
|
||
minor_variants: | ||
mem: 16384 | ||
threads: 64 | ||
|
||
coverage_intervals: | ||
coverage: 0 | ||
mem: 2000 | ||
threads: 1 | ||
|
||
lofreq: | ||
consensus: false | ||
|
||
snv: | ||
consensus: false | ||
localscratch: $TMPDIR | ||
time: 240 | ||
mem: 1024 | ||
threads: 64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,15 @@ | ||
--- | ||
name: Poliovirus (MinION) | ||
# config-file used for the analysis of poliovirus MinION samples | ||
# sample accession number: ERR4027774 (Shaw et al., 2020, DOI: https://doi.org/10.1128/jcm.00920-20) | ||
|
||
general: | ||
virus_base_config: "" | ||
aligner: minimap | ||
preprocessor: skip | ||
|
||
input: | ||
reference: resources/polio/AY560657.1.fasta | ||
datadir: resources/samples/ | ||
samples_file: config/samples.tsv | ||
paired: false | ||
|
||
output: | ||
trim_primers: false | ||
snv: false | ||
local: false | ||
global: false | ||
visualization: false | ||
QA: false | ||
diversity: false | ||
|
||
minimap_align: | ||
preset: map-ont |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,21 @@ | ||
--- | ||
name: Respiratory Syncytial Virus B | ||
# config file for Human respiratory syncytial virus B | ||
# config file is used to process Illumina RSV samples | ||
|
||
general: | ||
virus_base_config: "" | ||
preprocessor: "prinseq" | ||
aligner: "bwa" | ||
primers_trimmer: "samtools" | ||
|
||
input: | ||
datadir: "samples/" | ||
samples_file: "samples.tsv" | ||
read_length: 251 | ||
reference: "{VPIPE_BASEDIR}/../resources/rsvb/MT107528.1.fasta" | ||
primers_bedfile: "{VPIPE_BASEDIR}/../resources/rsvb/RSVB_primers_400_V2.1.bed" | ||
inserts_bedfile: "{VPIPE_BASEDIR}/../resources/rsvb/RSVB_inserts_400_V2.1.bed" | ||
reference: "{VPIPE_BASEDIR}/../resources/rsvb/MT107528.1.fasta" | ||
read_length: 251 | ||
|
||
output: | ||
datadir: "results" | ||
trim_primers: true | ||
snv: false | ||
local: false | ||
global: false | ||
snv: | ||
consensus: false | ||
lofreq: | ||
consensus: false | ||
|
||
snv: | ||
consensus: false |