Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/applicativesystem/lastz-awk

analyzing lastz alignments using awk
https://github.com/applicativesystem/lastz-awk

awk awk-programming-language awk-script bioinformatics bioinformatics-genome genome-alignments-bioinfromatics genome-genome-alignment genome-protein-alignment lastz

Last synced: 7 days ago
JSON representation

analyzing lastz alignments using awk

Awesome Lists containing this project

README

        

# lastz-alignment-awk
genome sorting and plotting the length alignment from the lastz alignment for the node calculations before you import them for the calculations.
```
gem install youplot
cat lastzalignment.txt | awk '{ print $10 }' | cut -f 1 -d "-" > length1.txt \
&& cat lastzalignment.txt | awk '{ print $10 }' | cut -f 2 -d "-" > \
length2.txt && paste length1.txt length2.txt \
| awk '{ print $2-$1 }' | youplot barplot

cat lastzalignment.txt | awk '{ print $12 }' | cut -f 1 -d "-" > length1.txt \
&& cat lastzalignment.txt | awk '{ print $12 }' | cut -f 2 -d "-" > \
length2.txt && paste length1.txt length2.txt \
| awk '{ print $2-$1 }' | youplot barplot
```
Gaurav Sablok \
University of Potsdam \
Potsdam,Germany