Fix README.md

This commit is contained in:
kojix2 2021-05-24 13:31:47 +09:00 committed by GitHub
parent f596391ad9
commit 69167a6f44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -106,8 +106,8 @@ In this example, YouPlot counts the number of chromosomes where the gene is loca
```sh ```sh
cat gencode.v35.annotation.gff3 \ cat gencode.v35.annotation.gff3 \
| grep -v '#' | grep 'gene' | cut -f1 | \ | grep -v '#' | grep 'gene' | cut -f1 \
uplot count -t "The number of human gene annotations per chromosome" -c blue | uplot count -t "The number of human gene annotations per chromosome" -c blue
``` ```
<p align="center"> <p align="center">
@ -119,7 +119,7 @@ This is fine in most cases, as long as the data size is small. If you want to vi
```sh ```sh
cat gencode.v35.annotation.gff3 | grep -v '#' | grep 'gene' | cut -f1 \ cat gencode.v35.annotation.gff3 | grep -v '#' | grep 'gene' | cut -f1 \
|sort | uniq -c | sort -nrk2 | awk '{print $2,$1}' \ | sort | uniq -c | sort -nrk2 | awk '{print $2,$1}' \
| uplot bar -d ' ' -t "The number of human gene annotations per chromosome" -c blue | uplot bar -d ' ' -t "The number of human gene annotations per chromosome" -c blue
``` ```