Skip to content

Aequivinius/covid

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

80 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

OGER / BB / PA

All the outputs of this pipeline will finally be linked here. This documentation only provides a superficial view on how the different scripts are called and how they depend on each other, for more precise instructions see run.sh.

1.1 General Pipeline

The python scripts need some libraries that are listed in the Pipfile, make sure to start your pipenv or virtualenv first.

  1. A little script downloads the most recent PMIDs included in the LitCovid dataset, computes the differences towards the last update and creates the necessary data directories. The whole dataset is then annotated for the 10 different CRAFT vocabularies:
CHEBI CL GO_BP GO_CC GO_MF MOP NCBITaxon PR SO UBERON
  1. OGER is called: It downloads the articles and annotates them. For every vocabulary, it generates one big data/oger/$VOCABULARY.conll file containing all the articles and annotations.
  2. BioBert preprocessed the articles, and then predicts spans and ids for each of the vocabularies (into data/biobert/CHEBI-ids.labels etc.)
  3. The outputs of OGER and BB are harmonised using harmonise.py,
  4. An additional merge step joins the 10 different vocabulary files, and searches the document again using a covid-specific, manually crafted dictionary (oger/merge/covid19.tsv)
  5. Finally, the outputs are distributed to PubAnnotation, EuroPMC, brat and for download on the project website (BioC, TSV, TXT)

1.2 data directory

data
|--- ids # list of ids to download
|--- oger (_pmc) # OGER annotations
     |--- CHEBI.conll
     |--- ...
|--- biobert (_pmc)
     |--- CHEBI-ids.labels
     |--- CHEBI-spans.labels
     |--- ...
|--- biobert(_pmc).tf_record / .tokens # preprocessing
|--- harmonised (_pmc)
     |--- CHEBI.conll
     |--- ...
|--- merged (_pmc)
     |--- collection.conll
     |--- collection.json
     |--- ...
|--- harmonised_json
     |--- CL
          |--- 123456789.json
          |--- ...
     |--- CL.tgz
     |--- ...
|--- public # data that goes to be downloaded 

2.1 Obtaining PMIDs

python -c 'import covid; covid.get_pmids()'

For PMC, supply the .ods file and the pmcid.txt from the previous run (or just an empty file) to the covid.pmcods_to_txt()function.

2.2 OGER

  • adapt the config/common.inifile (or use the one here); especially set conll_include = docid offsets. Like this, the resulting .conll file will prefix every individual article with #doc_id = 123456789, which allows us later on to split the articles again so they can be uploaded to PubAnnotation.
  • also, I remember that in one of the config files there was a small error, but I don't recall which one.
  • on our default development server, this takes about 50s per vocabulary.
# pwd = oger
for value in CHEBI CL GO_BP GO_CC GO_MF MOP NCBITaxon PR SO UBERON
do
oger run -s config/common.ini config/$value.ini -o ../data/oger/$value

2.3 BioBert

# preprocessing
# pwd = biobert
python3 biobert_predict.py \
--do_preprocess=true \
--input_text=../data/oger/CL.conll \
--tf_record=../data/biobert.tf_record \
--vocab_file=common/vocab.txt
  • Since the individual calls take quite some time this loop serves as a demonstration of what commands to run, but I wouldn't recommend running it as follows. The models' names of BB unfortunately have inconsistent suffixes.
# pwd = biobert
declare -A vocabularies=( [CHEBI]=52715 [CL]=52714 [GO_BP]=52715 [GO_CC]=52712 [GO_MF]=52710 [MOP]=52710 [NCBITaxon]=52710 [PR]=52720 [SO]=52714 [UBERON]=52717 )

for v in "${!vocabularies[@]}"
do

for s in ids spans
do

echo "BB for" $v-$s
mkdir ../data/biobert/$v-$s

python3 biobert_predict.py \
	--do_predict=true \
	--tf_record=../data/biobert.tf_record \
	--bert_config_file=common/bert_config.json \
	--init_checkpoint=models/$v-$s/model.ckpt-${vocabularies[$v]} \
	--data_dir=models/$v-$s \
	--output_dir=../data/biobert/$v-$s \
	--configuration=$s

done
done 
  • On our server there are also 4 scripts called run_$SERVER.sh, which are not uploaded to git. These can be called to run a bunch of screen processes according to the server's capacity.

2.4 harmonise.py

  • As described in the Furrer paper, different merging strategies perform best depending on the vocabulary.
declare -A vocabularies=( [CHEBI]=spans-first [CL]=spans-first [GO_BP]=spans-first [GO_CC]=spans-first [GO_MF]=spans-first [MOP]=spans-first [NCBITaxon]=ids-first [PR]=spans-only [SO]=spans-first [UBERON]=spans-first )

for v in "${!vocabularies[@]}"
do
python harmonise.py -t data/harmonised_conll/$v.conll -o data/oger/$v.conll -b data/biobert_tokens/collection.tokens -i data/biobert/$v-ids.labels -s data/biobert/$v-spans.labels -m ${vocabularies[$v]}

2.5 merging

  • in oger-settings-all.ini , look at export_format = bioc_json and add necessary output formats. In oger-postfilter-all.ini, make sure the input-directory is correct. Also, in the oger directory, there needs to be a collection.conll file that the script uses to extract ids of the articles to process.
  • Note that right now, export_format = bioc_json and pubanno_json produce .json files that overwrite each other. Because of that, this step is perfomed several times with different settings (for PA and EuroPMC).
# pwd = oger
oger run -s oger-settings-all.ini

2.6 Distribution

  • In PubAnnotation (here), you might have to add more documents to the collection by uploading the pmids.txt generated in the first step. Then, upload the collection.pubannotation.json
  • BioC, TXT and TSV files are created and moved to their respective destinations
  • To upload to EuroPMC, there needs to be a separate run with using only 4 vocabularies (CL, MOP, SO, UBERON); otherwise there will be unknown types in the final json, which EuroPMC doesn't like.

About

๐Ÿ‘‘๐Ÿฆ  Annotating PMC and PubMed articles for Covid-related entities

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published