Can I know if it is possible to use get_sdf_from_dock_db.py to get the top n compound based on the lowest docking score? My initial plan is to use an SQLite editor to sort the docking_score and save the .db to a new file, and then use the script to get the sdf, but I'm curious if I can use the script directly.
I assume that with SQLite command, I would have to use SELECT TOP(n) ..... ORDER BY 'docking_score', but that may break the compatibility of the script. Or maybe using SELECT ..... ORDER BY 'docking_score' LIMIT n is also okay?
Can I know if it is possible to use
get_sdf_from_dock_db.pyto get the top n compound based on the lowest docking score? My initial plan is to use an SQLite editor to sort the docking_score and save the.dbto a new file, and then use the script to get the sdf, but I'm curious if I can use the script directly.I assume that with SQLite command, I would have to use
SELECT TOP(n) ..... ORDER BY 'docking_score', but that may break the compatibility of the script. Or maybe usingSELECT ..... ORDER BY 'docking_score' LIMIT nis also okay?