1
0
mirror of https://github.com/pcvolkmer/fastq-tools.git synced 2025-09-13 13:12:52 +00:00

chore: use subcommand 'scramble'

This commit is contained in:
2025-08-11 12:58:24 +02:00
parent 98c75d9834
commit 00b3dc5e09
5 changed files with 259 additions and 220 deletions

View File

@@ -1,11 +1,15 @@
# FASTQ scrambler
# FASTQ tools
Application to scramble FASTQ files to provide non-sensitive data for development purposes
Application to show information about and scramble FASTQ files to provide non-sensitive data for development purposes
## Usage
This application provides the following subcommands
### Scramble
To scramble compressed FASTQ files use:
```shell
cat file_fastq.gz | gz -d | fastq-scrambler | gz > scrambled_fastq.gz
cat file_fastq.gz | gzip -d | fastq-tools scramble | gzip > scrambled_fastq.gz
```