Delete compileOGNT.py
This commit is contained in:
parent
1c65a9668c
commit
2d974e3328
|
@ -1,36 +0,0 @@
|
|||
|
||||
|
||||
import re
|
||||
|
||||
inputFile = 'berean_tablesInclusive.csv'
|
||||
outputFile = 'berean_tablesInclusive_OGNT.csv'
|
||||
|
||||
# open database
|
||||
f = open(inputFile,'r')
|
||||
newData = f.read()
|
||||
f.close()
|
||||
|
||||
# clean up
|
||||
newData = re.sub('^([^\n\t]*?\t)[^\n\t]*?\t[^\n\t]*?\t[^\n\t]*?\t[^\n\t]*?\t[^\n\t]*?\t[^\n\t]*?\t([^\n\t]*?\t[^\n\t]*?\t[^\n\t]*?\t)[^\n\t]*?\t([^\n\t]*?\t[^\n\t]*?\t[^\n\t]*?)\t.*?$', r'\1\2\3', newData, flags=re.M)
|
||||
newData = re.sub('^[^\t\n]*?\t0\t0\t0\t.*?\n', '', newData, flags=re.M)
|
||||
|
||||
# take away some of TR variants; those variants are reserved in footnotes
|
||||
newData = re.sub('^.*?{[^{}]*?}.*?\n', '', newData, flags=re.M)
|
||||
# take away some of BYZ variants; those variants are reserved in footnotes
|
||||
newData = re.sub('^.*?⧼[^⧼⧽]*?⧽.*?\n', '', newData, flags=re.M)
|
||||
# take away some of WH variants; those variants are reserved in footnotes
|
||||
newData = re.sub('^.*?\([^\(\)]*?\).*?\n', '', newData, flags=re.M)
|
||||
# take away Nestle 1904 variants; those variants are reserved in footnotes
|
||||
newData = re.sub('^.*?〈[^〈〉]*?〉.*?\n', '', newData, flags=re.M)
|
||||
# take away some of SBLGNT variants; those variants are reserved in footnotes
|
||||
newData = re.sub('^.*?〈[^〈〉]*?〉.*?\n', '', newData, flags=re.M)
|
||||
|
||||
|
||||
# 2 lines below replace words in main text with variants, use for mapping purposes ONLY
|
||||
newData = re.sub('^([^\t\n]*?\t[^\t\n]*?\t[^\t\n]*?\t[^\t\n]*?\t)[^\t\n]*?\t([^\t\n]*?\t)([^\t\n+@]+?)$', r'\1\3\t\2\3', newData, flags=re.M)
|
||||
newData = re.sub('^([^\t\n]*?\t[^\t\n]*?\t[^\t\n]*?\t[^\t\n]*?\t[^\t\n]*?)\t.*?$', r'\1', newData, flags=re.M)
|
||||
|
||||
# close database
|
||||
f = open(outputFile,'w')
|
||||
f.write(newData)
|
||||
f.close()
|
Loading…
Reference in New Issue