Hi all,
I am wondering if there is an easy way to estimate the number of fragments resulting from a double digest reaction (in my case ddRAD). For a single digest, one can do the following:
((proportion of cut sites)^(enzyme cut frequency)) x (genome size) = number of RAD fragments
For instance, with ecoRI (6 cutter) and a proportion of 0.25 across a genome of 2.5Gbs:
(0.25)^6 x 2,500,000,000 = 610,351.6 RAD fragments
Is there a similar way for calculate this for a double digest reaction? One could use simRAD in R or even use grep or cat commands on the reference fasta file (cat ref.fasta | tr -d "\n" | grep -o -E “enz1sequence.{200,400}enzyme2sequence” | wc -l).
However, I would like to know if there is an easier solution to this such as the one described above for single digest.
Thanks!
I am wondering if there is an easy way to estimate the number of fragments resulting from a double digest reaction (in my case ddRAD). For a single digest, one can do the following:
((proportion of cut sites)^(enzyme cut frequency)) x (genome size) = number of RAD fragments
For instance, with ecoRI (6 cutter) and a proportion of 0.25 across a genome of 2.5Gbs:
(0.25)^6 x 2,500,000,000 = 610,351.6 RAD fragments
Is there a similar way for calculate this for a double digest reaction? One could use simRAD in R or even use grep or cat commands on the reference fasta file (cat ref.fasta | tr -d "\n" | grep -o -E “enz1sequence.{200,400}enzyme2sequence” | wc -l).
However, I would like to know if there is an easier solution to this such as the one described above for single digest.
Thanks!
Comment