Question about SSBandDSBWithDBSCAN #122
-
Simulation questionHello, I would like to learn more about the SSBandDSBWithDBSCAN scorer. From your previous post (#110), I understand that it’s a new scorer that doesn’t require the DBSCAN scorer on its own. Could you clarify the differences between the two? Also, is there a paper describing this method? I ask because I am trying to score SSB and DSB in TsCircularPlasmid, and I noticed that both methods are mentioned in the TOPAS-nBio/examples/scorers. Thank you for your time and help. TOPAS-nBio categoryScoring Code of Conduct
Attestation
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Good question. The difference is the way Topas-nBio passes the spatial information of the energy deposition events to DSBCAN.
In both cases, the classification of SSB and DSB are managed by DBSCAN. Best! |
Beta Was this translation helpful? Give feedback.
Good question.
The difference is the way Topas-nBio passes the spatial information of the energy deposition events to DSBCAN.
s:Sc/<scorer>/Quantity = "DBSCAN"there is not any DNA geometry. The spatial events are filtered by the energy threshold and a 16% probability (Francis et al) given byu:Sc/<scorer>/ScoreHitsWithProbability=0.16. You could think this probability as a DNA geometry factor to set how "dense" is the DNA in the medium. The position of the "damage" on the DNA helix (left or right) is done with a 50% probability.s:Sc/<scorer>/Quantity="SimpleSSBandDSBWithDBSCAN", the spatial events (base pair, strand ID) are filtered by the plasmid/DNA ge…