Originally posted by jtladner
View Post
You can try Ray 2.0-rc5.
We modified this to enable metagenome assemblies.
Originally posted by jtladner
View Post
If you plot the coverage distribution, I am sure you will see something thatg is not smooth, yet I am sure you will see a sizable peak.
To plot your data (enter these commands in your terminal)
Code:
cd Place-Where-My-Assembly-Is-Located
ls CoverateDistribution.txt # make sure you are at the good place
R --vanilla
# the next commands will be given to R
data=read.table('CoverageDistribution.txt',header=TRUE)
pdf('MyCoverageFrequencies.pdf')
plot(data[,1],data[,2],xlab='k-mer coverage depth',ylab='Frequency',log='xy',type='l')
dev.off()
Code:
~/git-clones/ray/scripts/plot-coverage-distribution.R CoverageDistribution.txt
Originally posted by jtladner
View Post
One of the acceptation tests was to do a whole lane of PhiX, a virus whose genome has just 5386 nucleotides.
The coverage distribution was ridiculous:

If we zoom in, we can see that the peak is not smooth.

This *may* be caused be cluster complexity on the flow cell.
*Maybe* your data look like this also, maybe not.
Originally posted by jtladner
View Post
You should plot your distributions to assess the quality of your data.
Originally posted by jtladner
View Post
Leave a comment: