Repository 'micropita'
hg clone https://toolshed.g2.bx.psu.edu/repos/george-weingart/micropita

Changeset 1:cd71e90abfab (2015-02-08)
Previous changeset 0:2f4f6f08c8c4 (2014-05-13) Next changeset 2:cdef6996e3f3 (2016-08-30)
Commit message:
Updated version that suppresses the future warnings option that was causing a problem
modified:
MicroPITA.py
b
diff -r 2f4f6f08c8c4 -r cd71e90abfab MicroPITA.py
--- a/MicroPITA.py Tue May 13 21:58:57 2014 -0400
+++ b/MicroPITA.py Sun Feb 08 18:27:54 2015 -0500
b
@@ -35,6 +35,8 @@
 
 import sys
 import argparse
+import warnings
+warnings.simplefilter(action = "ignore", category = FutureWarning)
 from src.breadcrumbs.src.AbundanceTable import AbundanceTable
 from src.breadcrumbs.src.ConstantsBreadCrumbs import ConstantsBreadCrumbs
 from src.breadcrumbs.src.Metric import Metric