looks like you are passing a string instead of a variable
data = pd.read_table('ligand_file', skiprows=7)
should be:
data = pd.read_table(ligand_file, skiprows=7)
no?
--
You received this message because you are subscribed to the Google Groups
"spyder" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/spyderlib/1da016e9-8f61-4c72-acaa-abb21d70a78b%40googlegroups.com.