@@ -60,7 +60,7 @@ def registerIsopotes(self, isotopesfile=Path("Isotopes.dat")):
60
60
if not isotopesfile .is_file ():
61
61
raise ValueError (
62
62
"Isotopes database not found in:\n '{}'." .format (isotopesfile ))
63
- with open (isotopesfile , 'r' ) as fp :
63
+ with open (str ( isotopesfile ) , 'r' ) as fp : # str for compatibility with Python3.5
64
64
self .dfIsotopes = pd .read_csv (fp )
65
65
for i in ['element' , 'mass' , 'abundance' ]:
66
66
if i not in self .dfIsotopes .columns :
@@ -79,7 +79,7 @@ def registerIsopotes(self, isotopesfile=Path("Isotopes.dat")):
79
79
except :
80
80
raise ValueError ("Error in 'Isotopes.dat' at line {}:\n abundance={!r}" .format (i + 2 , item ))
81
81
# reload file
82
- with open (isotopesfile , 'r' ) as fp :
82
+ with open (str ( isotopesfile ) , 'r' ) as fp :
83
83
self .dfIsotopes = pd .read_csv (
84
84
fp , converters = {'mass' : Decimal , 'abundance' : np .float64 })
85
85
self ._stripColNames (self .dfIsotopes )
@@ -93,7 +93,7 @@ def registerDerivativesDB(self, derivativesfile=Path("Derivatives.dat")):
93
93
if not derivativesfile .is_file ():
94
94
raise ValueError (
95
95
"Derivatives database not found in:\n '{}'." .format (derivativesfile ))
96
- with open (derivativesfile , 'r' ) as fp :
96
+ with open (str ( derivativesfile ) , 'r' ) as fp :
97
97
self .dfDerivatives = pd .read_csv (fp , delimiter = '\t ' )
98
98
for i in ['name' , 'formula' ]:
99
99
if i not in self .dfDerivatives .columns :
@@ -105,7 +105,7 @@ def registerMetabolitesDB(self, metabolitesfile=Path("Metabolites.dat")):
105
105
if not metabolitesfile .is_file ():
106
106
raise ValueError (
107
107
"Metabolites database not found in:\n '{}'." .format (metabolitesfile ))
108
- with open (metabolitesfile , 'r' ) as fp :
108
+ with open (str ( metabolitesfile ) , 'r' ) as fp :
109
109
self .dfMetabolites = pd .read_csv (fp , delimiter = '\t ' )
110
110
for i in ['name' , 'formula' ]:
111
111
if i not in self .dfMetabolites .columns :
@@ -116,7 +116,7 @@ def registerMetabolitesDB(self, metabolitesfile=Path("Metabolites.dat")):
116
116
def registerDatafile (self , datafile = Path ("mydata.tsv" )):
117
117
if not Path (datafile ).is_file ():
118
118
raise ValueError ("No data file selected." )
119
- with open (datafile , 'r' ) as fp :
119
+ with open (str ( datafile ) , 'r' ) as fp :
120
120
self .dfDatafile = pd .read_csv (fp , delimiter = '\t ' )
121
121
for i in ['sample' , 'metabolite' , 'derivative' , 'area' , 'isotopologue' ]:
122
122
if i not in self .dfDatafile .columns :
0 commit comments