-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathREADME
32 lines (24 loc) · 1.03 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Sisyphus-style checksums
This pipeline takes a runfolder and an include file and generates a checksum
file compatible with [Sisyphus](https://github.com/Molmed/sisyphus).
## Usage
```nextflow
nextflow run main.nf --input_folder <path_to_runfolder> --include_file <path_to_include_file> [--ignore_cache]
```
### Running on Uppmax
When running on Uppmax, use `-profile uppmax` and specify project with `--project <uppmax project>`
## Input
- `--input_folder <path_to_runfolder`: path to the runfolder for which the
checksums need to be generated
- `--include_file <path_to_include_file`: determines which files should appear
in the checksums (same format as `rsync`)
- `--ignore-cache` whether or not to use previously computed checksums. When
this flag is set, the pipeline will ignore previously computed checksum.
Otherwise, it will keep the checksums available in `MD5/checksums.md5` in the
input runfolder.
## Output
The pipeline will write the results at `MD5/checksums.md5` in the input runfolder.
## Running the tests
```
nf-test test
```