Skip to content

Commit 57bc6ec

Browse files
authored
Strict syntax (#123)
* Template update for nf-core/tools version 2.6 * Template update for nf-core/tools version 2.7.2 * update pipeline name * update pipeline name * Template update for nf-core/tools version 3.5.1 * fix merge issues * pre-commit * ignore the test_data param * remove stdout from tests and update snapshots * Channel -> channel * remove old gridss and annotsv code * remove old gridss and annotsv code * fix first syntax problems * latest syntax fixes * fix default snap * fix the last language server issues
1 parent 7546c77 commit 57bc6ec

56 files changed

Lines changed: 750 additions & 1329 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

main.nf

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ params.fai = getGenomeAttribute('fai')
2929
params.dict = getGenomeAttribute('dict')
3030
params.gtf = getGenomeAttribute('gtf')
3131
params.vep_cache = getGenomeAttribute('vep_cache')
32-
// params.bwa = getGenomeAttribute('bwa')
33-
// params.annotsv_annotations = getGenomeAttribute('annotsv_annotations')
3432
params.expansionhunter_catalog = getGenomeAttribute('expansionhunter_catalog')
3533
params.qdnaseq_male = getGenomeAttribute("qdnaseq_male_${params.qdnaseq_bin_size.toInteger() / 1000}kbp".toString())
3634
params.qdnaseq_female = getGenomeAttribute("qdnaseq_female_${params.qdnaseq_bin_size.toInteger() / 1000}kbp".toString())
@@ -67,9 +65,9 @@ workflow {
6765
params.show_hidden
6866
)
6967

70-
def ch_multiqc_config = Channel.fromPath("$projectDir/assets/multiqc_config.yml", checkIfExists: true)
71-
def ch_multiqc_custom_config = params.multiqc_config ? Channel.fromPath( params.multiqc_config, checkIfExists: true ) : Channel.empty()
72-
def ch_multiqc_logo = params.multiqc_logo ? Channel.fromPath( params.multiqc_logo, checkIfExists: true ) : Channel.empty()
68+
def ch_multiqc_config = channel.fromPath("$projectDir/assets/multiqc_config.yml", checkIfExists: true)
69+
def ch_multiqc_custom_config = params.multiqc_config ? channel.fromPath( params.multiqc_config, checkIfExists: true ) : channel.empty()
70+
def ch_multiqc_logo = params.multiqc_logo ? channel.fromPath( params.multiqc_logo, checkIfExists: true ) : channel.empty()
7371
def ch_multiqc_custom_methods_description = params.multiqc_methods_description ? file(params.multiqc_methods_description, checkIfExists: true) : file("$projectDir/assets/methods_description_template.yml", checkIfExists: true)
7472

7573
//
@@ -93,9 +91,6 @@ workflow {
9391
params.qdnaseq_male,
9492
params.wisecondorx_reference,
9593
params.vep_cache,
96-
// params.annotsv_annotations,
97-
// params.annotsv_candidate_genes,
98-
// params.annotsv_gene_transcripts,
9994
params.vcfanno_lua,
10095
params.vcfanno_resources,
10196
params.vcfanno_toml,

modules.json

Lines changed: 4 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,6 @@
55
"https://github.com/nf-core/modules.git": {
66
"modules": {
77
"nf-core": {
8-
"annotsv/annotsv": {
9-
"branch": "master",
10-
"git_sha": "296d216c3f6384936a6526b6fbed7e6412259fb4",
11-
"installed_by": ["modules"]
12-
},
13-
"annotsv/installannotations": {
14-
"branch": "master",
15-
"git_sha": "296d216c3f6384936a6526b6fbed7e6412259fb4",
16-
"installed_by": ["modules"]
17-
},
188
"bcftools/annotate": {
199
"branch": "master",
2010
"git_sha": "2ad29c2aed06d815d9f68ad7ba20b3b1c574ce9c",
@@ -82,25 +72,19 @@
8272
"git_sha": "b42fec6f7c6e5d0716685cabb825ef6bf6e386b5",
8373
"installed_by": ["modules"]
8474
},
85-
"gridss/gridss": {
86-
"branch": "master",
87-
"git_sha": "3f5420aa22e00bd030a2556dfdffc9e164ec0ec5",
88-
"installed_by": ["modules"],
89-
"patch": "modules/nf-core/gridss/gridss/gridss-gridss.diff"
90-
},
9175
"jasminesv": {
9276
"branch": "master",
93-
"git_sha": "a33c6de0a147226454c4a52db710826f2d9fafbe",
77+
"git_sha": "671cad06f043fdf5c5aae7c49890ad8ccdacbb04",
9478
"installed_by": ["modules"]
9579
},
9680
"manta/convertinversion": {
9781
"branch": "master",
98-
"git_sha": "92bf2a8afa318a64f9d333cf87b510c662fd4274",
82+
"git_sha": "3485512d3930df1fcb66b5f92af639179bdfe4be",
9983
"installed_by": ["modules"]
10084
},
10185
"manta/germline": {
10286
"branch": "master",
103-
"git_sha": "ebc1733b77c702f19fe42076a5edfcbaa0d84f66",
87+
"git_sha": "3485512d3930df1fcb66b5f92af639179bdfe4be",
10488
"installed_by": ["modules"]
10589
},
10690
"multiqc": {
@@ -203,7 +187,7 @@
203187
},
204188
"utils_nfschema_plugin": {
205189
"branch": "master",
206-
"git_sha": "e753770db613ce014b3c4bc94f6cba443427b726",
190+
"git_sha": "ff506dcada6fc826ed0c641dc2ed1e98f7345fbe",
207191
"installed_by": ["subworkflows"]
208192
}
209193
}

modules/nf-core/annotsv/annotsv/environment.yml

Lines changed: 0 additions & 7 deletions
This file was deleted.

modules/nf-core/annotsv/annotsv/main.nf

Lines changed: 0 additions & 73 deletions
This file was deleted.

modules/nf-core/annotsv/annotsv/meta.yml

Lines changed: 0 additions & 132 deletions
This file was deleted.

modules/nf-core/annotsv/annotsv/tests/main.nf.test

Lines changed: 0 additions & 52 deletions
This file was deleted.

0 commit comments

Comments
 (0)