-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'update-readme' into 'dev'
Bump version, minor doc edit See merge request epi2melabs/workflows/wf-single-cell!215
- Loading branch information
Showing
4 changed files
with
51 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,23 @@ | ||
<!---Any additional tips.---> | ||
+ If the workflow fails please run it with the demo data set to ensure the workflow itself is working. This will help us determine if the issue is related to the environment, input parameters or a bug. | ||
+ See how to interpret some common nextflow exit codes [here](https://labs.epi2me.io/trouble-shooting/). | ||
+ See how to interpret some common nextflow exit codes [here](https://labs.epi2me.io/trouble-shooting/). | ||
|
||
When using singularity the following error may occur: | ||
|
||
``` | ||
RuntimeError: cannot cache function 'rdist': no locator available for file '/home/epi2melabs/...' | ||
``` | ||
|
||
If you receive this error we suggest using the following in a `nextflow.config` file to set the cache directory to a location that is writable by the singularity container: | ||
|
||
``` | ||
profiles { | ||
singularity { | ||
singularity { | ||
enabled = true | ||
autoMounts = true | ||
runOptions = '--writable-tmpfs' | ||
} | ||
} | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters