mirror of
https://github.com/red-data-tools/YouPlot.git
synced 2025-05-07 15:41:12 +08:00
Update README.md
This commit is contained in:
parent
5f26b430fb
commit
ee79b8675e
@ -89,8 +89,14 @@ cat gencode.v35.annotation.gff3 \
|
||||
|
||||

|
||||
|
||||
Note: `count` is slower than other Unix commands because it runs in a Ruby script.
|
||||
Note: `count` command is not very fast because it runs in a Ruby script.
|
||||
This is fine if the data is small, that is, in most cases. However, if you want to visualize huge data, it is faster to use a combination of common Unix commands as shown below.
|
||||
|
||||
```sh
|
||||
cat gencode.v35.annotation.gff3 | grep -v '#' | grep 'gene' | cut -f1 \
|
||||
|sort | uniq -c | sort -nrk2 | awk '{print $2,$1}' \
|
||||
| uplot bar -d ' ' -t "The number of human gene annotations per chromosome" -c blue
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user