Skip to content

Commit

Permalink
Merge pull request #72 from nf-core/dev
Browse files Browse the repository at this point in the history
Release 1.0.2
  • Loading branch information
fbdtemme authored Nov 20, 2023
2 parents cf8bc13 + 7bcd5d5 commit 436f974
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.1] - 2023-10-26
## [1.0.2] - 2023-11-20

### Enhancements & fixes

- [[PR #70](https://github.com/nf-core/pixelator/pull/70)] - Fix loading of absolute paths and urls in input samplesheet

## [1.0.1] - 2023-10-27

### Enhancements & fixes

Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ manifest {
description = """Pipeline for analysis of Molecular Pixelation assays"""
mainScript = 'main.nf'
nextflowVersion = '!>=23.04.0'
version = '1.0.1'
version = '1.0.2'
// TODO: Use zenodo DOI once available
doi = '10.1101/2023.06.05.543770'
}
Expand Down
3 changes: 0 additions & 3 deletions samplesheet.csv

This file was deleted.

6 changes: 3 additions & 3 deletions subworkflows/local/input_check.nf
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,12 @@ def resolve_relative_path(relative_path, URI samplesheet_path) {

// If a scheme is given we keep it as given
if (uri.getScheme() != null) {
return uri
return relative_path
}

def path = new File(relative_path);
def path = new File(relative_path)
if (path.isAbsolute()) {
return path
return relative_path
}

// Resolve relative paths agains the samplesheet_path
Expand Down

0 comments on commit 436f974

Please sign in to comment.