crema v0.0.2
Pre-release
Pre-release
This release is a bug fix.
Bug: Reading in a tab delimited file (such as a .txt file) caused crema to throw the following error: "ValueError: Usecols do not match columns". Upon further investigation, discovered that the read file method could not properly identify column names even after specifying the separator equal to "\t".
Fix: When using the pandas read_csv method, specified the "sep" argument equal to "None", which uses Python's builtin sniffer tool to automatically detect the separator used in the input file.