File tree Expand file tree Collapse file tree 3 files changed +22
-4
lines changed Expand file tree Collapse file tree 3 files changed +22
-4
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ )
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 3.1.2] ( https://github.com/nf-core/sarek/releases/tag/3.1.2 ) - Lesser Lule River
9
+
10
+ Lesser Lule River is English for Lilla Luleälven
11
+
12
+ ### Added
13
+
14
+ ### Changed
15
+
16
+ ### Fixed
17
+
18
+ - [ #905 ] ( https://github.com/nf-core/sarek/pull/905 ) - Remove usages of deprecated ` Channel.from ` method
19
+
20
+ ### Deprecated
21
+
22
+ ### Removed
23
+
24
+ ### Dependencies
25
+
8
26
## [ 3.1.1] ( https://github.com/nf-core/sarek/releases/tag/3.1.1 ) - Lilla Luleälven
9
27
10
28
Lilla Luleälven river's main affluent is Rapaätno.
Original file line number Diff line number Diff line change @@ -280,7 +280,7 @@ manifest {
280
280
description = ' An open-source analysis pipeline to detect germline or somatic variants from whole genome or targeted sequencing'
281
281
mainScript = ' main.nf'
282
282
nextflowVersion = ' !>=21.10.3'
283
- version = ' 3.1.1 '
283
+ version = ' 3.1.2 '
284
284
doi = ' 10.12688/f1000research.16665.2, 10.5281/zenodo.4063683'
285
285
}
286
286
Original file line number Diff line number Diff line change @@ -1081,7 +1081,7 @@ workflow SAREK {
1081
1081
ch_multiqc_files = ch_multiqc_files. mix(ch_methods_description. collectFile(name : ' methods_description_mqc.yaml' ))
1082
1082
ch_multiqc_files = ch_multiqc_files. mix(ch_reports. collect(). ifEmpty([]))
1083
1083
1084
- ch_multiqc_configs = Channel . from( ch_multiqc_config) . mix(ch_multiqc_custom_config). ifEmpty([])
1084
+ ch_multiqc_configs = ch_multiqc_config. mix(ch_multiqc_custom_config). ifEmpty([])
1085
1085
1086
1086
MULTIQC (
1087
1087
ch_multiqc_files. collect(),
@@ -1134,7 +1134,7 @@ def extract_csv(csv_file) {
1134
1134
def patient_sample_lane_combinations_in_samplesheet = []
1135
1135
def sample2patient = [:]
1136
1136
1137
- Channel . from (csv_file). splitCsv(header : true )
1137
+ Channel . of (csv_file). splitCsv(header : true )
1138
1138
.map{ row ->
1139
1139
if (params. step == " mapping" ) {
1140
1140
if ( ! row. lane ) { // This also handles the case where the lane is left as an empty string
@@ -1161,7 +1161,7 @@ def extract_csv(csv_file) {
1161
1161
sample_count_normal = 0
1162
1162
sample_count_tumor = 0
1163
1163
1164
- Channel . from (csv_file). splitCsv(header : true )
1164
+ Channel . of (csv_file). splitCsv(header : true )
1165
1165
// Retrieves number of lanes by grouping together by patient and sample and counting how many entries there are for this combination
1166
1166
.map{ row ->
1167
1167
sample_count_all++
You can’t perform that action at this time.
0 commit comments