Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

- [#882](https://github.com/nf-core/eager/pull/882) Define DSL1 execution explicitly, as new versions Nextflow made DSL2 default (♥ to & fix from @Lehmann-Fabian)
- [#879](https://github.com/nf-core/eager/issues/879) Add missing threads parameter for pre-clipping FastQC for single end data that caused insufficient memory in some cases (♥ to @marcel-keller for reporting)
- [#889](https://github.com/nf-core/eager/issues/889) Remove/updated parameters from benchmarking test profiles (♥ to @TCLamnidis for reporting)

### `Dependencies`

Expand Down
10 changes: 3 additions & 7 deletions conf/benchmarking_human.config
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,24 @@ params {
config_profile_description = "A 'fullsized' benchmarking profile for deepish Human sequencing aDNA data"

//Input data
input = 'https://raw.githubusercontent.com/jfy133/test-datasets/eager/testdata/Benchmarking/benchmarking_human.tsv'
input = 'https://raw.githubusercontent.com/nf-core/test-datasets/eager/testdata/Benchmarking/benchmarking_human.tsv'
// Genome reference
fasta = 'https://hgdownload.soe.ucsc.edu/goldenPath/hg19/bigZips/hg19.fa.gz'

run_bam_filtering = true
bam_discard_unmapped = true
bam_unmapped_type = 'discard'
bam_mapping_quality_threshold = 30

dedupper = 'markduplicates'

run_trim_bam = true
bamutils_clip_left = 1
bamutils_clip_right = 1
bamutils_clip_double_stranded_none_udg_left = 1
bamutils_clip_double_stranded_none_udg_right = 1

// JAR will need to be downloaded first!
run_genotyping = true
genotyping_tool = 'ug'
genotyping_source = 'trimmed'
gatk_ug_jar = 'GenomeAnalysisTK.jar'
gatk_call_conf = 20

run_sexdeterrmine = true
Expand All @@ -41,8 +39,6 @@ params {
contamination_chrom_name = 'chrX'

run_mtnucratio = true


}

process {
Expand Down
1 change: 0 additions & 1 deletion conf/benchmarking_vikingfish.config
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ params {
bwaalnl = 1024

run_bam_filtering = true
bam_discard_unmapped = true
bam_unmapped_type = 'discard'
bam_mapping_quality_threshold = 25

Expand Down