Skip to content

Commit 1d9be33

Browse files
committed
Update version number in script generating text file
1 parent b3385a1 commit 1d9be33

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/make_supporting_files.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
#Put it in a nice table for easy parsing. Use semicolons to separate fields, making sure each individual field doesn't contain any semicolons since this would break parsing.
1212

13-
outtext = ["#Hydration free energy datbase v0.5, 1/19/17.\n"]
13+
outtext = ["#Hydration free energy datbase v0.52, 6/11/17.\n"]
1414
outtext += ["#Semicolon-delimited text file with fields in the following format:\n"]
1515
outtext += ["# compound id (and file prefix); SMILES; iupac name (or alternative if IUPAC is unavailable or not parseable by OEChem); experimental value (kcal/mol); experimental uncertainty (kcal/mol); Mobley group calculated value (GAFF) (kcal/mol); calculated uncertainty (kcal/mol); experimental reference (original or paper this value was taken from); calculated reference; text notes.\n"]
1616

@@ -25,7 +25,7 @@
2525
if ';' in notes: #Make sure no semicolon in notes
2626
#Fix issue where I used a semicolon
2727
notes = notes.replace('not presently available;', 'not presently available, so')
28-
if ';' in notes:
28+
if ';' in notes:
2929
print("ERROR: For %s, note contains ;. The note is:" % cid, notes)
3030
if ';' in database[cid]['expt_reference']:
3131
print("ERROR: For %s, experimental reference contains ;. The reference is:" % cid, database[cid]['expt_reference'])

0 commit comments

Comments
 (0)