Skip to content

Commit aa88368

Browse files
authored
Merge pull request #619 from maxulysse/dev_AWS_megatests
fix issue with AWS megatests
2 parents 261785b + 5cb2850 commit aa88368

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

workflows/sarek.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -985,7 +985,7 @@ workflow.onComplete {
985985
def 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) {

0 commit comments

Comments
 (0)