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
Allow passing in pandas dataframes to x2sys_cross (#591)
Run crossover analysis directly on pandas.DataFrame inputs
instead of having to write to tab-separated value (TSV) files first!
Implemented by storing pandas.DataFrame data in a temporary file
and passing this intermediate file to x2sys_cross. Need to do some
file parsing to get the right file extension (suffix) for this to work.
* Use tempfile_from_dftrack instead of tempfile_from_buffer
* Don't use GMTTempFile, just generate random filename and write to it
* Reduce git diff and make Windows tests pass by ignoring permission error
* Test input two pandas dataframes to x2sys_cross with time column
Renamed 'result' to 'table' to prevent pylint complaining about
R0914: Too many local variables (16/15) (too-many-locals)
* Improve docstring of x2sys_cross and tempfile_from_dftrack
0 commit comments