├── .gitattributes ├── .gitignore ├── 01.download.ipynb ├── 02.corpus_id.ipynb ├── 03.corpus_br.ipynb ├── 04.doi-citations.ipynb ├── LICENSE.md ├── README.md ├── data ├── citations-doi.tsv.xz ├── citations.tsv.xz └── identifiers.tsv.xz ├── download ├── .gitignore ├── 2017-07-25-corpus_id.tsv.xz └── figshare-files.tsv └── environment.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/opencitations/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Jupyter 2 | .ipynb_checkpoints/ 3 | -------------------------------------------------------------------------------- /01.download.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/opencitations/HEAD/01.download.ipynb -------------------------------------------------------------------------------- /02.corpus_id.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/opencitations/HEAD/02.corpus_id.ipynb -------------------------------------------------------------------------------- /03.corpus_br.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/opencitations/HEAD/03.corpus_br.ipynb -------------------------------------------------------------------------------- /04.doi-citations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/opencitations/HEAD/04.doi-citations.ipynb -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/opencitations/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/opencitations/HEAD/README.md -------------------------------------------------------------------------------- /data/citations-doi.tsv.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/opencitations/HEAD/data/citations-doi.tsv.xz -------------------------------------------------------------------------------- /data/citations.tsv.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/opencitations/HEAD/data/citations.tsv.xz -------------------------------------------------------------------------------- /data/identifiers.tsv.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/opencitations/HEAD/data/identifiers.tsv.xz -------------------------------------------------------------------------------- /download/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/opencitations/HEAD/download/.gitignore -------------------------------------------------------------------------------- /download/2017-07-25-corpus_id.tsv.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/opencitations/HEAD/download/2017-07-25-corpus_id.tsv.xz -------------------------------------------------------------------------------- /download/figshare-files.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/opencitations/HEAD/download/figshare-files.tsv -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/opencitations/HEAD/environment.yml --------------------------------------------------------------------------------