You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-3Lines changed: 12 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,11 +21,11 @@ A Nextflow DSL2 pipeline for processing Oxford Nanopore long-read sequencing dat
21
21
22
22
```csv
23
23
sampleid,data_dir
24
-
sample1,/path/to/sample1
25
-
sample2,/path/to/sample2
24
+
sample1,/path/to/sample1/pod5/
25
+
sample2,/path/to/sample2/pod5/
26
26
```
27
27
28
-
**Note:** The pipeline expects a `pod5/` subdirectory within each `data_dir`. Your directory structure should look like:
28
+
**Note:** The pipeline expects the full path of the directory containing the `*.pod5` or `*.fast5` files. Your directory structure should look like:
29
29
30
30
```text
31
31
/path/to/sample1/
@@ -35,6 +35,14 @@ A Nextflow DSL2 pipeline for processing Oxford Nanopore long-read sequencing dat
35
35
└── ...
36
36
```
37
37
38
+
```text
39
+
/path/to/sample1/
40
+
└── fast5/
41
+
├── file1.fast5
42
+
├── file2.fast5
43
+
└── ...
44
+
```
45
+
38
46
2.**Target regions** (BED)
39
47
40
48
```tsv
@@ -76,6 +84,7 @@ The pipeline consists of the following main steps:
76
84
1.**Basecalling** (`ONT_BASECALL`):
77
85
78
86
- Performs basecalling and modified base detection using `Dorado`. The output BAM file contains MM (modification type) and ML (modification likelihood) tags.
87
+
- Automatically detects and converts FAST5 files to POD5 format if needed before basecalling.
0 commit comments