Skip to content

Commit 22fdc1e

Browse files
committed
Update documentation
1 parent 09f2a22 commit 22fdc1e

File tree

2 files changed

+28
-2
lines changed

2 files changed

+28
-2
lines changed

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,20 @@
2121
> [!NOTE]
2222
> If you are new to Nextflow and nf-core, please refer to [this page](https://nf-co.re/docs/usage/installation) on how to set-up Nextflow. Make sure to [test your setup](https://nf-co.re/docs/usage/introduction#how-to-run-a-pipeline) with `-profile test` before running the workflow on actual data.
2323
24+
#### Running nextflow @ MSKCC
25+
26+
If you are runnning this pipeline on a MSKCC cluster you need to make sure nextflow is properly configured for the HPC envirornment:
27+
28+
```bash
29+
module load java/jdk-17.0.8
30+
module load singularity/3.7.1
31+
export PATH=$PATH:/path/to/nextflow/binary
32+
export SINGULARITY_TMPDIR=/path/to/network/storage/for/singularity/tmp/files
33+
export NXF_SINGULARITY_CACHEDIR=/path/to/network/storage/for/singularity/cache
34+
```
35+
36+
### Running the pipeline
37+
2438
First, prepare a samplesheet with your input data that looks as follows:
2539

2640
`samplesheet.csv`:

docs/usage.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,19 @@
44
55
## Introduction
66

7-
<!-- TODO nf-core: Add documentation about anything specific to running your pipeline. For general topics, please point to (and add to) the main nf-core website. -->
7+
This documentation will walk you through running the nextflow pipeline.
8+
9+
## Running @ MSKCC
10+
11+
If you are runnning this pipeline on a MSKCC cluster you need to make sure nextflow is properly configured for the HPC envirornment:
12+
13+
```bash
14+
module load java/jdk-17.0.8
15+
module load singularity/3.7.1
16+
export PATH=$PATH:/path/to/nextflow/binary
17+
export SINGULARITY_TMPDIR=/path/to/network/storage/for/singularity/tmp/files
18+
export NXF_SINGULARITY_CACHEDIR=/path/to/network/storage/for/singularity/cache
19+
```
820

921
## Samplesheet input
1022

@@ -18,7 +30,7 @@ You will need to create a samplesheet with information about the samples you wou
1830

1931
This is an example samplesheet you need to run the pipeline. Note that the bed file is optional and can be empty
2032

21-
```console
33+
```csv
2234
pairId,tumorBam,normalBam,assay,normalType,bedFile
2335
pair_1,/path/to/tumor.bam,/path/to/normal.bam,IMPACT505,MATCHED,None
2436
pair_2,/path/to/tumor.bam,/path/to/normal.bam,IMPACT505,MATCHED,null

0 commit comments

Comments
 (0)