-
Notifications
You must be signed in to change notification settings - Fork 5
Description
Hey guys, thanks for this great tool, nice clear code too!
I wonder if you could explain more about the forward_only flag.
I understand that when it's False (the default), then for each given sequence you predict from both 1) the forward sequence, and 2) the reverse complement of the sequence. Then you average the pairs of profiles (after re-reversing the latter profile), and the counts.
However, I know that chrombpnet models are trained with artificial reverse complement data, so wouldn't a single prediction from the forward version of a sequence, and the reverse complement version of the sequence be about the same anyway? (therefore not much difference if you average the two)
Related question, in what cases might you want to use forward_only = True or False ?
Thanks!