├── .gitattributes ├── .gitignore ├── 1.works-to-dataframe.ipynb ├── 2.types-to-dataframe.ipynb ├── LICENSE.md ├── README.md ├── data ├── doi-to-issn.tsv.xz ├── doi.tsv.xz ├── mongo-export │ ├── .gitignore │ ├── README.md │ └── checksums-sha256.txt └── types.tsv ├── download.py ├── environment.yml ├── logs └── .gitignore └── utilities.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/crossref/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/crossref/HEAD/.gitignore -------------------------------------------------------------------------------- /1.works-to-dataframe.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/crossref/HEAD/1.works-to-dataframe.ipynb -------------------------------------------------------------------------------- /2.types-to-dataframe.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/crossref/HEAD/2.types-to-dataframe.ipynb -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/crossref/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/crossref/HEAD/README.md -------------------------------------------------------------------------------- /data/doi-to-issn.tsv.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/crossref/HEAD/data/doi-to-issn.tsv.xz -------------------------------------------------------------------------------- /data/doi.tsv.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/crossref/HEAD/data/doi.tsv.xz -------------------------------------------------------------------------------- /data/mongo-export/.gitignore: -------------------------------------------------------------------------------- 1 | crossref-works.json.xz 2 | -------------------------------------------------------------------------------- /data/mongo-export/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/crossref/HEAD/data/mongo-export/README.md -------------------------------------------------------------------------------- /data/mongo-export/checksums-sha256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/crossref/HEAD/data/mongo-export/checksums-sha256.txt -------------------------------------------------------------------------------- /data/types.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/crossref/HEAD/data/types.tsv -------------------------------------------------------------------------------- /download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/crossref/HEAD/download.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/crossref/HEAD/environment.yml -------------------------------------------------------------------------------- /logs/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | -------------------------------------------------------------------------------- /utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenelab/crossref/HEAD/utilities.py --------------------------------------------------------------------------------