Discrepancy between NucleosomeRatio documentation and implementation #2328
Unanswered
Rushil-Chakra
asked this question in
Questions / Documentation
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I noticed that the documentation on the
NucleosomeRatiometric states thatmonoFrags = fragSize < 2 * nucLength. However, the code calculatesw <- trunc(width(fragx)/nucLength) + 1. If we were to have a fragment of size 150, the documentation would lead me to believe that this would be classified as amonoFragas150 < (147 * 2). However, the implementation would havetrunc(150/147) + 1 = 1 + 1 = 2, meaning this is classified as adiFrag.Is there any guidance on which of these is the correct definition for the
NucleosomeRatio? Or am I missing something and the implementation does indeed match the documentationBeta Was this translation helpful? Give feedback.
All reactions