You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is possible that the RbtBaseFileSource::Read method has a bug where reading multi-record files with record delimiter at the beginning of the record (like MOL2) yields only the odd records (1st, 3rd, etc).
I didn't have the time to check properly, but the original code looks suspicious:
read all lines and skip the delimiter for record 2
skip until it finds the delimiter of record 3
read all lines from record 3 and skip the delimiter for record 4
and so on
it is possible that either I'm reading it wrong, or this issue doesn't affect the regular execution of rdock (it only reads one record for the receptor, which is the file that uses MOL2. molecules are provided in SDF which uses a delimiter at the end of each record)
there's been no complains about this in the last decades, so I think priority for this is quite low
The text was updated successfully, but these errors were encountered:
It is possible that the RbtBaseFileSource::Read method has a bug where reading multi-record files with record delimiter at the beginning of the record (like MOL2) yields only the odd records (1st, 3rd, etc).
I didn't have the time to check properly, but the original code looks suspicious:
To me it looks like it's going to
and so on
it is possible that either I'm reading it wrong, or this issue doesn't affect the regular execution of rdock (it only reads one record for the receptor, which is the file that uses MOL2. molecules are provided in SDF which uses a delimiter at the end of each record)
there's been no complains about this in the last decades, so I think priority for this is quite low
The text was updated successfully, but these errors were encountered: