File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -110,6 +110,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
110110- [ #602 ] ( https://github.com/nf-core/sarek/pull/602 ) - Fixed bug in ` alignment_to_fastq ` and added tests
111111- [ #609 ] ( https://github.com/nf-core/sarek/pull/609 ) - Remove unused intervals code, reorganize combined intervals file
112112- [ #615 ] ( https://github.com/nf-core/sarek/pull/615 ) - Fix ASCAT igenomes file paths
113+ - [ #619 ] ( https://github.com/nf-core/sarek/pull/619 ) - Fix issue with checking samplesheet content with AWS
113114
114115### Deprecated
115116
Original file line number Diff line number Diff line change @@ -985,7 +985,7 @@ workflow.onComplete {
985985def extract_csv(csv_file) {
986986
987987 // check that the sample sheet is not 1 line or less, because it'll skip all subsequent checks if so.
988- new File (csv_file. toString() ). withReader(' UTF-8' ) { reader ->
988+ file (csv_file). withReader(' UTF-8' ) { reader ->
989989 def line, numberOfLinesInSampleSheet = 0 ;
990990 while ((line = reader. readLine()) != null ) {numberOfLinesInSampleSheet++ }
991991 if (numberOfLinesInSampleSheet < 2 ) {
You can’t perform that action at this time.
0 commit comments