Skip to content

Commit 508b3c1

Browse files
committed
update README.md
1 parent 8651e7b commit 508b3c1

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ Path to a directory containing FASTQ files generated by Dorado high-accuracy bas
5858
#### `--outdir`
5959
The output directory path where results will be saved. This can be a local absolute path or an AWS S3 URI. If using an AWS S3 URI, please ensure your security credentials are configured in the `nextflow.config` file.
6060

61+
#### `--pool_ID`
62+
A unique identifier for the ONT sequencing run being demultiplexed.
63+
6164
#### `--barcodes`
6265
Path to the barcode FASTA file used for Dorado demultiplexing. The default barcode file (**barcodes.384.fa**) is located in the `assets` folder.
6366

@@ -80,6 +83,7 @@ nextflow run \
8083
main.nf \
8184
--input "${PWD}/path/to/fastq/directory" \
8285
--outdir "${PWD}/path/to/output" \
86+
--pool_ID "test" \
8387
-resume -bg
8488
```
8589

@@ -92,6 +96,7 @@ nextflow run \
9296
main.nf \
9397
--input "${PWD}/test_data/fastq_pass" \
9498
--outdir "${PWD}/test_output" \
99+
--pool_ID "384_test" \
95100
-resume -bg
96101
```
97102

nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ profiles {
3434
process.executor = 'local'
3535
docker.enabled = true
3636
params {
37-
input = "test_data/fastq_pass" // Path to input FASTQ file(s), e.g. --input "fastq_pass"
37+
input = "test_data/fastq_pass/*.fastq.gz" // Path to input FASTQ file(s)
3838
barcodes = "assets/barcodes.384.fa" // Path to barcode file, e.g. --barcodes barcode.fa
3939
arrangement_toml = "assets/arrangement.toml"
4040
outdir = 'ci_output' // Default output directory

0 commit comments

Comments
 (0)