When running CLIPper I was getting a couple of deprecation warnings which I have pasted below. I emailed Michael regarding this and found out that these are just benign warnings which will not affect the analysis
WARNING:py.warnings:/usr/local/lib/python2.7/dist-packages/clipper-0.2.0-py2.7-linux-x86_64.egg/clipper/src/peakfinder.py:446: FutureWarning: sort(columns=....) is deprecated, use sort_values(by=.....)
df = df.sort("final_p_value")
WARNING:py.warnings:/usr/local/lib/python2.7/dist-packages/clipper-0.2.0-py2.7-linux-x86_64.egg/clipper/src/peakfinder.py:449: FutureWarning: sort(columns=....) is deprecated, use sort_values(by=.....)
df['padj'] = df.sort("final_p_value", ascending=False).bh_corrected.cummin()
WARNING:py.warnings:/usr/local/lib/python2.7/dist-packages/clipper-0.2.0-py2.7-linux-x86_64.egg/clipper/src/peakfinder.py:450: FutureWarning: sort(....) is deprecated, use sort_index(.....)
return df.sort().
When running CLIPper I was getting a couple of deprecation warnings which I have pasted below. I emailed Michael regarding this and found out that these are just benign warnings which will not affect the analysis
WARNING:py.warnings:/usr/local/lib/python2.7/dist-packages/clipper-0.2.0-py2.7-linux-x86_64.egg/clipper/src/peakfinder.py:446: FutureWarning: sort(columns=....) is deprecated, use sort_values(by=.....) df = df.sort("final_p_value")
WARNING:py.warnings:/usr/local/lib/python2.7/dist-packages/clipper-0.2.0-py2.7-linux-x86_64.egg/clipper/src/peakfinder.py:449: FutureWarning: sort(columns=....) is deprecated, use sort_values(by=.....) df['padj'] = df.sort("final_p_value", ascending=False).bh_corrected.cummin()
WARNING:py.warnings:/usr/local/lib/python2.7/dist-packages/clipper-0.2.0-py2.7-linux-x86_64.egg/clipper/src/peakfinder.py:450: FutureWarning: sort(....) is deprecated, use sort_index(.....) return df.sort().