forked from knh11545/commandline4expertsearchers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathan2query
510 lines (470 loc) · 12 KB
/
an2query
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
#!/usr/bin/env bash
# Convert a list of database accession numbers or other IDs into a search string
# Author: Helge Knüttel
# Date: 2020
# Some sensible settings. Taken from https://kvz.io/bash-best-practices.html
set -o errexit # exit when a command fails
set -o pipefail # catch failing commands in a pipe
set -o nounset # exit when script tries to use undeclared variables
# set -o xtrace # Trace what gets executed. Useful for debugging.
# Help text
PrintHelp() {
cat << "EOF"
Convert a list of database accession numbers or other IDs into a search string
Each accession number/ID must be on an individual line.
Input is not checked for correct accession numbers/IDs but whitespace at beginning
or end of lines as well as empty lines will be deleted.
The ID types known are specific for a database syntax.
Input is read from STDIN. Output is written to STDOUT.
Options
--syntax Database syntax. Mandatory option.
--idtype Type of acession number/ID. Mandatory option.
Database syntax formats and ID types
Known syntax formats are host and database specific:
pubmed ID types: pmid, pmcid, doi, aid, lid
pmc ID types: pmid, pmcid, doi
ovid_medline ID types: pmid, pmcid, doi, pii
ovid_embase ID types: an, eu, pmid, doi
cochrane_library ID types: an, doi, tn, none
web_of_science ID types: an, doi, pmid
citavi ID types: doi, pmcid, pmid
ebscohost_psycinfo ID types: an, pmid, doi
ebscohost_cinahl ID types: an, pmid
dimensions ID types: doi
dimensions_api ID types: doi
Examples
cat pmid.txt | an2query --syntax ovid_medline --idtype pmid > query.txt
cat ovid_embase_export.cgi | extract_accession_numbers --format ovid_embase | an2query --syntax ovid_embase --idtype an > query.txt
EOF
}
# Read command line arguments
if [ $# -eq 0 ]
then
echo "ERROR: Mandatory argument(s) missing. Try '${0} --help'" >&2
exit 1
fi
while [ $# -gt 0 ]
do
case "$1" in
--syntax )
shift
if [ $# -gt 0 ]
then
syntax="$1"
shift
else
echo "ERROR: Missing --syntax argument" >&2
exit 1
fi
;;
--idtype )
shift
if [ $# -gt 0 ]
then
idtype="$1"
shift
else
echo "ERROR: Missing --idtype argument" >&2
exit 1
fi
;;
-h|--help )
PrintHelp
exit 0
;;
* )
# unknown argument
unknown_arg=$1
echo "ERROR: Unknown argument ${unknown_arg}" >&2
exit 1
;;
esac
done
case "$syntax" in
pubmed )
# Fields to search for in PubMed
case "$idtype" in
pmid )
PUBMED_FIELD=UID
QUOTE=""
;;
pmcid )
PUBMED_FIELD=PMCID
QUOTE=""
;;
doi|aid )
PUBMED_FIELD=AID
QUOTE='"'
;;
lid )
# Location ID
PUBMED_FIELD=LID
QUOTE='"'
;;
* )
# unknown argument
echo "ERROR: Unknown idtype ${idtype}" >&2
exit 1
;;
esac
# Steps:
# * Delete empty lines or lines containig only whitespace.
# * Add ${QUOTE} to beginning of each line of the input.
# * Add ${QUOTE} and field specification to end of each line of the input.
# Whitespace at beginning or end of line will be deleted.
# * Add ' OR ' to end of each line except the last one.
sed\
-e '/^\s*$/d' - | \
sed\
-e "s/^\s*/${QUOTE}/" \
-e "s/\s*$/${QUOTE}\[${PUBMED_FIELD}\]/" \
-e '$! s/$/ OR /'
;;
pmc )
# Fields to search for in PubMed Central
case "$idtype" in
pmid )
PMC_FIELD=PMID
;;
pmcid )
# Apparently, there is no dedicated field for PMCIDs that can be searched.
PMC_FIELD=ALL
;;
doi )
PMC_FIELD=AID
;;
* )
# unknown argument
echo "ERROR: Unknown idtype ${idtype}" >&2
exit 1
;;
esac
# Steps:
# * Delete empty lines or lines containig only whitespace.
# * Add '"' to beginning of each line of the input.
# * Add '"' and field specification to end of each line of the input.
# Whitespace at beginning or end of line will be deleted.
# * Add ' OR ' to end of each line except the last one.
sed\
-e '/^\s*$/d' - | \
sed\
-e 's/^\s*/"/' \
-e "s/\s*$/\"\[${PMC_FIELD}\]/" \
-e '$! s/$/ OR /'
;;
ovid_medline )
# grep "^UI - " - | sed -e 's/^UI - //' -e 's/\r//g'
# Fields to search for in Ovid MEDLINE
# This is the part in between the periods in a search statement.
case "$idtype" in
pmid )
OVID_FIELD_LIST=ui
;;
pmcid )
OVID_FIELD_LIST=pm
;;
doi )
OVID_FIELD_LIST=do,id
;;
pii )
OVID_FIELD_LIST=id
;;
* )
# unknown argument
echo "ERROR: Unknown idtype ${idtype}" >&2
exit 1
;;
esac
# Steps:
# * Delete empty lines or lines containig only whitespace.
# * Add '"' to beginning of each line of the input.
# * Add '"' to end of each line of the input.
# Whitespace at beginning or end of line will be deleted.
# * Add ' OR ' to end of each line except the last one.
# * Add "(" to beginning of file
# * Add ")" and field specification to end of file
sed\
-e '/^\s*$/d' - | \
sed\
-e 's/^\s*/"/' \
-e 's/\s*$/"/' \
-e '$! s/$/ OR /' | \
sed\
-e '1 i (' \
-e "\$ a ).${OVID_FIELD_LIST}."
;;
ovid_embase )
# Fields to search for in Ovid Embase
# This is the part in between the periods in a search statement.
case "$idtype" in
an )
OVID_FIELD_LIST=an
;;
eu )
OVID_FIELD_LIST=eu
;;
pmid )
OVID_FIELD_LIST=pm
;;
doi )
OVID_FIELD_LIST=do
;;
* )
# unknown argument
echo "ERROR: Unknown idtype ${idtype}" >&2
exit 1
;;
esac
# Steps:
# * Delete empty lines or lines containig only whitespace.
# * Add '"' to beginning of each line of the input.
# * Add '"' to end of each line of the input.
# Whitespace at beginning or end of line will be deleted.
# * Add ' OR ' to end of each line except the last one.
# * Add "(" to beginning of file
# * Add ")" and field specification to end of file
sed\
-e '/^\s*$/d' - | \
sed\
-e 's/^\s*/"/' \
-e 's/\s*$/"/' \
-e '$! s/$/ OR /' | \
sed\
-e '1 i (' \
-e "\$ a ).${OVID_FIELD_LIST}."
;;
cochrane_library )
# Fields to search for in Cochrane Library
case "$idtype" in
an )
COCHRANE_FIELD_SPEC=":an"
;;
doi )
COCHRANE_FIELD_SPEC=":doi"
;;
tn )
COCHRANE_FIELD_SPEC=":tn"
;;
none )
# No field specification i.a. all fields
COCHRANE_FIELD_SPEC=""
;;
* )
# unknown argument
echo "ERROR: Unknown idtype ${idtype}" >&2
exit 1
;;
esac
# Steps:
# * Delete empty lines or lines containig only whitespace.
# * Add '(' to beginning of each line of the input.
# * Add ')' and field specification to end of each line of the input.
# Whitespace at beginning or end of line will be deleted.
# * Add ' OR ' to end of each line except the last one.
# * Join lines
sed\
-e '/^\s*$/d' - | \
sed\
-e 's/^\s*/(/' \
-e "s/\s*$/)${COCHRANE_FIELD_SPEC}/" \
-e '$! s/$/ OR /' | \
tr "\n" " "
;;
web_of_science )
# Fields to search for in Web of Science (Core Collection)
case "$idtype" in
an )
WOS_FIELD_SPEC="UT"
;;
doi )
WOS_FIELD_SPEC="DO"
;;
pmid )
WOS_FIELD_SPEC="PMID"
;;
* )
# unknown argument
echo "ERROR: Unknown idtype ${idtype}" >&2
exit 1
;;
esac
# Steps:
# * Delete empty lines or lines containig only whitespace.
# * Add '"' to beginning of each line of the input.
# * Add '"' to end of each line of the input.
# Whitespace at beginning or end of line will be deleted.
# * Add ' OR ' to end of each line except the last one.
# * Add "<field specification>=(" to beginning of file
# * Add ")" to end of file
sed\
-e '/^\s*$/d' - | \
sed\
-e 's/^\s*/"/' \
-e 's/\s*$/"/' \
-e '$! s/$/ OR /' | \
sed\
-e "1 i ${WOS_FIELD_SPEC}=(" \
-e '$ a )'
;;
citavi )
# Fields to search for in Citavi citation manager
case "$idtype" in
doi )
CITAVI_FIELD_SPEC="DOI"
;;
pmcid )
CITAVI_FIELD_SPEC="PMCID"
;;
pmid )
CITAVI_FIELD_SPEC="PubMedId"
;;
* )
# unknown argument
echo "ERROR: Unknown idtype ${idtype}" >&2
exit 1
;;
esac
# Steps:
# * Delete empty lines or lines containig only whitespace.
# * Add '(' and field specification to beginning of each line of the input.
# * Add ')' to end of each line of the input.
# Whitespace at beginning or end of line will be deleted.
# * Add ' OR ' to end of each line except the last one.
# * Join lines
sed\
-e '/^\s*$/d' - | \
sed\
-e "s/^\s*/(${CITAVI_FIELD_SPEC}: /" \
-e 's/\s*$/)/' \
-e '$! s/$/ OR /' | \
tr "\n" " "
;;
ebscohost_psycinfo )
# Fields to search for in EBSCOhost PsycInfo
case "$idtype" in
an )
EBSCOHOST_FIELD=AN
;;
pmid )
EBSCOHOST_FIELD=PM
;;
doi )
EBSCOHOST_FIELD=DI
;;
* )
# unknown argument
echo "ERROR: Unknown idtype ${idtype}" >&2
exit 1
;;
esac
# Steps:
# * Delete empty lines or lines containig only whitespace.
# * Add '"' and field specification to beginning of each line of the input.
# * Add '"' to end of each line of the input.
# Whitespace at beginning or end of line will be deleted.
# * Add ' OR ' to end of each line except the last one.
sed\
-e '/^\s*$/d' - | \
sed\
-e "s/^\s*/${EBSCOHOST_FIELD} \"/" \
-e 's/\s*$/"/' \
-e '$! s/$/ OR /'
;;
ebscohost_cinahl )
# Fields to search for in EBSCOhost PsycInfo
case "$idtype" in
an )
# Steps:
# * Delete empty lines or lines containig only whitespace.
# * Add '"' and field specification to beginning of each line of the input.
# * Add '"' to end of each line of the input.
# Whitespace at beginning or end of line will be deleted.
# * Add ' OR ' to end of each line except the last one.
sed\
-e '/^\s*$/d' - | \
sed\
-e "s/^\s*/AN \"/" \
-e 's/\s*$/"/' \
-e '$! s/$/ OR /'
;;
pmid )
# Steps:
# * Delete empty lines or lines containig only whitespace.
# * Add '"', field specification and prefix to PMID to beginning of each line of the input.
# * Add '"' to end of each line of the input.
# Whitespace at beginning or end of line will be deleted.
# * Add ' OR ' to end of each line except the last one.
sed\
-e '/^\s*$/d' - | \
sed\
-e "s/^\s*/PM \"NLM/" \
-e 's/\s*$/"/' \
-e '$! s/$/ OR /'
;;
* )
# unknown argument
echo "ERROR: Unknown idtype ${idtype}" >&2
exit 1
;;
esac
;;
dimensions )
# Search in [Dimensions](https://app.dimensions.ai/) using DOI search
case "$idtype" in
doi )
# Nothing to do here
;;
* )
# unknown argument
echo "ERROR: Unknown idtype ${idtype}" >&2
exit 1
;;
esac
# Steps:
# * Delete empty lines or lines containig only whitespace.
# * Add '"' to beginning of each line of the input.
# * Add '"' to end of each line of the input.
# Whitespace at beginning or end of line will be deleted.
sed\
-e '/^\s*$/d' - | \
sed\
-e 's/^\s*/"/' \
-e 's/\s*$/"/' \
;;
dimensions_api )
# Fields to search for in [Dimensions Analytics API](https://app.dimensions.ai/)
# using [Dimensions Search Language (DSL)](https://docs.dimensions.ai/dsl/index.html)
# Beware: Not yet tested in API!
case "$idtype" in
doi )
DIMENSIONS_FIELD=doi
;;
* )
# unknown argument
echo "ERROR: Unknown idtype ${idtype}" >&2
exit 1
;;
esac
# Steps:
# * Delete empty lines or lines containig only whitespace.
# * Add '"' to beginning of each line of the input.
# * Add '"' to end of each line of the input.
# Whitespace at beginning or end of line will be deleted.
# * Add ', ' to end of each line except the last one.
# * Add "search publications where ${DIMENSIONS_FIELD} in [" to beginning of file
# * Add ")" and field specification to end of file
sed\
-e '/^\s*$/d' - | \
sed\
-e 's/^\s*/"/' \
-e 's/\s*$/"/' \
-e '$! s/$/, /' | \
sed\
-e "1 i search publications where ${DIMENSIONS_FIELD} in [" \
-e "\$ a ] return publications"
;;
* )
echo "ERROR: Unknown database syntax ${syntax}" >&2
exit 1
;;
esac