-
Notifications
You must be signed in to change notification settings - Fork 21
/
pubConvYif
executable file
·173 lines (143 loc) · 5.98 KB
/
pubConvYif
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
#!/usr/bin/env python
# first load the standard libraries from python
# we require at least python 2.5
#from sys import *
from __future__ import print_function
import sys
# load default python packages
import logging, optparse, os, collections, tarfile, mimetypes
from os.path import *
# add <scriptDir>/lib/ to package search path
progFile = os.path.abspath(sys.argv[0])
progDir = os.path.dirname(progFile)
pubToolsLibDir = os.path.join(progDir, "lib")
sys.path.insert(0, pubToolsLibDir)
# now load our own libraries
import pubGeneric, pubStore, pubConf, maxCommon, pubPubmed
from pubXml import *
# === COMMAND LINE INTERFACE, OPTIONS AND HELP ===
parser = optparse.OptionParser("""usage: %prog [options] <inFile> <outDir> - convert Yale Image Finder Dump to pubtools format
Example:
%prog /hive/data/outside/pubs/yif/ocrtext yif
""")
parser.add_option("-d", "--debug", dest="debug", action="store_true", help="show debug messages")
parser.add_option("-v", "--verbose", dest="verbose", action="store_true", help="show more debug messages")
#parser.add_option("", "--minId", dest="minId", action="store", help="minimum numerical ID, default %s", default=pubConf.identifierStart["yif"])
(options, args) = parser.parse_args()
# ==== FUNCTIONs =====
def createIndex(inDir, outDir, minId):
" get all PMIDs from dir and create index file in outDir "
files = os.listdir(inDir)
logging.info("Reading input dir %s" % inDir)
# create dict pmid -> set of filenames
idFiles = {}
for fname in files:
fileId = basename(fname).split(".")[0]
idFiles.setdefault(fileId, set()).add(fname)
logging.info("Found %d files with %d article identifiers" % (len(files), len(idFiles)))
indexFname = join(outDir, "index.tab")
indexFile = open(indexFname, "w")
logging.info("Writing index file %s" % indexFname)
# write index file
headers = ["chunkId", "articleId", "externalId", "mainFile", "suppFiles"]
indexFile.write("\t".join(headers)+"\n")
articleId = minId
for extId, files in idFiles.iteritems():
chunkId = "00000"
mainFile = extId+".pdf"
files.remove(mainFile)
row = [chunkId, str(articleId), extId, mainFile, ",".join(files)]
indexFile.write("\t".join(row)+"\n")
articleId += 1
indexFile.close()
return indexFname
def convertFiles(inDir, outDir, minId):
" parse yif format and write to outDir "
chunkCount = 0
yifFname = inDir
chunkSize = 3000
con, cur = pubStore.openArticleDb("pmc")
# sort yif by pmc id
sortFname = join(dirname(yifFname), "ocrtext.sorted")
logging.info("Sorting input file")
cmd = "sort -t/ -k1 %s > %s" % (yifFname, sortFname)
ret = os.system(cmd)
assert(ret==0)
writer = None
lastPmcId = None
artData = None
artCount = 0
noInfo = 0
donePmcIds = set()
pm = maxCommon.ProgressMeter(os.path.getsize(sortFname))
for line in open(sortFname):
# parse the rather weird yif format
pm.taskCompleted(len(line))
line = line.decode("utf8")
fields = line.split(" ")
idField = fields[0]
content = " ".join(fields[1:])
pmcId, figId = idField.split("/")
pmcId = pmcId.replace("PMC", "")
chunkId = "0_%05d" % chunkCount
if artData==None and pmcId==lastPmcId:
continue
# get and write article data if needed
if pmcId != lastPmcId or lastPmcId==None and pmcId not in donePmcIds:
artData = pubStore.lookupArticle(con, cur, "pmcId", pmcId)
# skip articles for which we have no data here
if artData==None:
logging.warn("No info locally for id %s" % pmcId)
noInfo+=1
continue
artData["source"] = "yif"
# if we have written enough articles, open a new file
if writer==None or artCount % chunkSize == 0:
if writer!=None:
writer.close()
chunkCount += 1
chunkId = "0_%05d" % chunkCount
print("making new writer")
writer = pubStore.PubWriterFile(join(outDir, chunkId))
articleId = int(artData["articleId"]) - pubConf.identifierStart["pmc"] + minId
#print "writing %s" % artData
#articleId = int(artData["articleId"])
writer.writeArticle(articleId, artData)
donePmcIds.add(pmcId)
fileCount = 0
artCount += 1
lastPmcId = pmcId
# create a new file row and write
fileData = pubStore.createEmptyFileDict()
fileData["desc"] = "Figure %d" % (fileCount+1)
fileData["externalId"] = "PMC"+pmcId
fileData["fileType"] = "fig"
#url = "http://www.ncbi.nlm.nih.gov/core/lw/2.0/html/tileshop_pmc/tileshop_pmc_inline.html?title=UCSCGenomeBrowserRedirect&p=PMC3&id=%s.jpg" % figId
#url = "PMCFIG://%s" % figId
url = "http://krauthammerlab.med.yale.edu/imagefinder/ImageDownloadService.svc?articleid=%s&file=%s&size=LARGE" % (pmcId, figId)
fileData["url"] = url
fileData["mimeType"] = "image/jpeg"
fileData["content"] = content
fileData = pubStore.dictToUtf8Escape(fileData)
# we add 500 to fileId to avoid overlaps
fileId = ((10**pubConf.FILEDIGITS)*int(articleId))+fileCount+500
writer.writeFile(articleId, fileId, fileData, externalId=pmcId)
fileCount += 1
print("Articles processed: %d" % len(donePmcIds))
print("Articles not found: %d" % noInfo)
writer.close()
def main(args, options):
inDir, outDataset = args
maxCommon.mustExist(inDir)
#minId = options.minId
minId = pubConf.identifierStart["yif"]
pubGeneric.setupLogging(progFile, options)
outDir = pubConf.resolveTextDir(outDataset)
maxCommon.mustExistDir(outDir)
maxCommon.mustBeEmptyDir(outDir)
convertFiles(inDir, outDir, minId)
# ----------- MAIN --------------
if args==[]:
parser.print_help()
exit(1)
main(args, options)