add other

cut and get last column
This commit is contained in:
onceupon 2017-02-16 20:25:13 +08:00 committed by GitHub
parent f8b83766ca
commit 0c57242c01

View File

@ -1317,6 +1317,11 @@ AAAABBBBCCCCDDDD
```bash
cat file.fastq | paste - - - - | sed 's/^@/>/g'| cut -f1-2 | tr '\t' '\n' >file.fa
```
#####cut and get last column
```bash
cat file|rev | cut -d/ -f1 | rev
```
##System