/usr/bin/entrez-phrase-search is in ncbi-entrez-direct 7.40.20170928+ds-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 | #!/bin/bash -norc
# simulates phrase search by queries on word pairs that may be indexed in specified field
do_one_query() {
esearch -db "$database" -query "$*" < /dev/null |
xtract -pattern ENTREZ_DIRECT -element Count
}
word_at_a_time() {
sed 's/[^+a-zA-Z0-9]/ /g; s/^ *//' |
tr 'A-Z' 'a-z' |
fmt -w 1
}
replace_stop_words() {
while read line
do
case "$line" in
a | about | again | all | almost | also | although | always | \
among | an | and | another | any | are | as | at | be | \
because | been | before | being | between | both | but | by | \
can | could | did | do | does | done | due | during | each | \
either | enough | especially | etc | for | found | from | \
further | had | has | have | having | here | how | however | \
i | if | in | into | is | it | its | itself | just | kg | km | \
made | mainly | make | may | mg | might | ml | mm | most | \
mostly | must | nearly | neither | no | nor | obtained | of | \
often | on | our | overall | perhaps | pmid | quite | rather | \
really | regarding | seem | seen | several | should | show | \
showed | shown | shows | significantly | since | so | some | \
such | than | that | the | their | theirs | them | then | \
there | therefore | these | they | this | those | through | \
thus | to | upon | use | used | using | various | very | was | \
we | were | what | when | which | while | with | within | \
without | would )
echo "+"
;;
* )
echo "$line"
;;
esac
done
}
group_phrases() {
uniq |
paste -sd "," - |
sed -e 's/^+//g' -e 's/+$//g' -e 's/,+,/+/g' -e 's/^,//g' -e 's/,$//g' -e 's/+/ /g'
}
word_pairs() {
while read first rest
do
if [ -z "$rest" ]
then
echo "$first"
continue
fi
prev=$first
for curr in $rest
do
echo "$prev $curr"
prev="$curr"
done
done
}
get_phrase_counts() {
echo "$*" |
word_at_a_time |
replace_stop_words |
group_phrases |
fmt -w 1 |
tr ',' ' ' |
word_pairs |
while read qry
do
counts=`do_one_query "\"$qry\" [$field]"`
if [ $counts -gt 0 ]
then
echo "$counts $qry"
fi
done
}
make_phrase_search() {
get_phrase_counts "$@" |
while read counts qry
do
if [ $counts -gt 9 ]
then
echo "\"$qry\" [$field]"
fi
done | sort -u | tr '\n' '*' | sed -e 's/*$//g' -e 's/*/ AND /g'
}
database="pubmed"
field="TIAB"
mode="search"
while [ $# -gt 0 ]
do
case "$1" in
-h | -help | --help )
mode=help
break
;;
-db | -database )
database=$2
shift
shift
;;
-field )
field=$2
shift
shift
;;
-count | -counts )
mode=count
shift
;;
-string )
mode=string
shift
;;
-* )
exec >&2
echo "$0: Unrecognized option $1"
mode=usage
shift
;;
* )
break
;;
esac
done
if [ $# -eq 0 ]
then
mode=usage
fi
case "$mode" in
help | usage )
cat <<EOF
USAGE: $0
[-count|-counts|-string]
[-db database|-database database]
[-field field]
query
EOF
if [ $mode = usage ]
then
exit 1
fi
;;
count )
get_phrase_counts "$@" | sed -e 's/^0/-/' | perl -pe 's/\s*(\d+)\s(.+)/$1\t$2/'
;;
search )
esearch -db "$database" -query "$(make_phrase_search "$@")"
;;
string )
make_phrase_search "$@"
;;
esac
|