From 69167a6f44b312b7ed8901b9aef2118e66e190b6 Mon Sep 17 00:00:00 2001 From: kojix2 <2xijok@gmail.com> Date: Mon, 24 May 2021 13:31:47 +0900 Subject: [PATCH] Fix README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 227f311..3fd3de8 100644 --- a/README.md +++ b/README.md @@ -106,8 +106,8 @@ In this example, YouPlot counts the number of chromosomes where the gene is loca ```sh cat gencode.v35.annotation.gff3 \ -| grep -v '#' | grep 'gene' | cut -f1 | \ - uplot count -t "The number of human gene annotations per chromosome" -c blue +| grep -v '#' | grep 'gene' | cut -f1 \ +| uplot count -t "The number of human gene annotations per chromosome" -c blue ```

@@ -119,7 +119,7 @@ This is fine in most cases, as long as the data size is small. If you want to vi ```sh 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 ```