mirror of
https://github.com/pcvolkmer/fastq-tools.git
synced 2025-09-13 05:02:53 +00:00
feat: implement info subcommand
This commit is contained in:
16
README.md
16
README.md
@@ -6,10 +6,24 @@ Application to show information about and scramble FASTQ files to provide non-se
|
||||
|
||||
This application provides the following subcommands
|
||||
|
||||
### Info
|
||||
|
||||
To show information about compressed FASTQ files use:
|
||||
|
||||
```shell
|
||||
cat file_fastq.gz | gzip -d | fastq-tools info
|
||||
```
|
||||
|
||||
This will result in output like
|
||||
|
||||

|
||||
|
||||
### Scramble
|
||||
|
||||
To scramble compressed FASTQ files use:
|
||||
|
||||
```shell
|
||||
cat file_fastq.gz | gzip -d | fastq-tools scramble | gzip > scrambled_fastq.gz
|
||||
```
|
||||
```
|
||||
|
||||
This will scramble headers and sequences and write the output into `scrambled_fastq.gz`.
|
Reference in New Issue
Block a user