-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create README about generating data sets
- Loading branch information
1 parent
b21a9a8
commit 51a1f73
Showing
1 changed file
with
19 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
## Generating data sets to use in F5N | ||
|
||
`generate-datasets.sh` script will generate zipped data sets which can be used in F5N server and F5N mobile application. | ||
Inorder to use the above script you need to have a folder structure as given below. | ||
|
||
```bash | ||
├── fastq | ||
│ ├── 1 | ||
│ │ ├── *.fastq (multiple files) | ||
│ └── 2 | ||
│ │ ├── *.fastq (multiple files) | ||
│ . | ||
. | ||
├── 1 | ||
│ ├── *.fast5 (single files) | ||
└── 2 | ||
│ ├── *.fast5 (single files) | ||
. | ||
``` |