Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/04-genomic-file-formats/02-FASTQ-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Note that in the case of paired-end sequencing, it is crucial that each of the F
Below is an example of the first four lines of a pair of FASTQ files generated by fq generate and validated by fq lint.

```bash
fq generate --n-records 2 Sample_R1.fastq.gz Sample_R2.fastq.gz
fq generate --record-count 2 Sample_R1.fastq.gz Sample_R2.fastq.gz
```

```bash
Expand Down Expand Up @@ -82,4 +82,4 @@ zcat Sample_R2.fastq.gz | head -n 7 | gzip -c > Sample_R2.bad.fastq.gz
fq lint Sample_R1.fastq.gz Sample_R2.bad.fastq.gz

# Sample_R2.bad.fastq.gz:8:1: [S004] CompleteValidator: Incomplete record: quality is empty
```
```