Skip to content

Commit fa19ef6

Browse files
authored
Merge pull request #123 from jfy133/master
Added troubleshooting pipeline updating
2 parents c36995d + 645ceb4 commit fa19ef6

3 files changed

Lines changed: 21 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unpublished / Dev Branch]
88

9-
## [2.0.4] - 2019-01-07
9+
## [2.0.4] - 2019-01-09
1010

1111
### `Added`
1212
* [#111](https://github.com/nf-core/eager/pull/110) - Allow [Zipped FastA reference input](https://github.com/nf-core/eager/issues/91)
1313
* [#113](https://github.com/nf-core/eager/pull/113) - All files are now staged via channels, which is considered best practice by Nextflow
1414
* [#114](https://github.com/nf-core/eager/pull/113) - Add proper runtime defaults for multiple processes
1515
* [#118](https://github.com/nf-core/eager/pull/118) - Add centralized configs handling by https://github.com/nf-core/configs
1616
* [#115](https://github.com/nf-core/eager/pull/115) - Add DamageProfiler MultiQC support
17+
* [#122](https://github.com/nf-core/eager/pull/122) - Add pulling from Dockerhub again
1718

1819
### `Fixed`
1920
* [#110](https://github.com/nf-core/eager/pull/110) - Fix for [MultiQC Missing Second FastQC report](https://github.com/nf-core/eager/issues/107)

docs/faq.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Frequently Asked Questions

docs/troubleshooting.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# nf-core/eager: Troubleshooting
22

3+
## My pipeline update doesn't seem to do anything!
4+
5+
To download a new version of a pipeline, you can use the following, replacing `<VERSION>` the the corresponding verison.
6+
7+
```bash
8+
nextflow pull nf-core/eager -r <VERSION>
9+
```
10+
However, in very rare cases, minor fixes to a version will be pushed out without a version number bump. This can confuse nextflow slightly, as it thinks you already have the 'broken' version from your original pipeline download.
11+
12+
If when running the pipeline you don't see any changes in the fixed version when running it, you can try removing your nextflow EAGER cache typically stored in your home directory with
13+
14+
```bash
15+
rm -r ~/.nextflow/assets/nf-core/eager
16+
```
17+
18+
And re-pull the pipeline with the command above. This will install a fresh version of the version with the fixes.
19+
320
## Input files not found
421

522
If no file, only one input file, or only read one and not read two is picked up then something is wrong with your input file declaration
@@ -26,3 +43,4 @@ If you still have an issue with running the pipeline then feel free to contact u
2643
Have a look at the [pipeline website](https://github.com/nf-core/eager) to find out how.
2744

2845
If you have problems that are related to Nextflow and not our pipeline then check out the [Nextflow gitter channel](https://gitter.im/nextflow-io/nextflow) or the [google group](https://groups.google.com/forum/#!forum/nextflow).
46+

0 commit comments

Comments
 (0)