academic-tracker
Academic Tracker is a package that can search PubMed, Crossref, ORCID, and Google Scholar for publications given a list of authors or publication citations.
https://github.com/moseleybioinformaticslab/academic_tracker
Science Score: 67.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
✓DOI references
Found 4 DOI reference(s) in README -
○Academic publication links
-
✓Committers with academic emails
2 of 3 committers (66.7%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (15.7%) to scientific vocabulary
Keywords
Repository
Academic Tracker is a package that can search PubMed, Crossref, ORCID, and Google Scholar for publications given a list of authors or publication citations.
Basic Info
- Host: GitHub
- Owner: MoseleyBioinformaticsLab
- License: other
- Language: Python
- Default Branch: main
- Homepage: https://moseleybioinformaticslab.github.io/academic_tracker/
- Size: 6.81 MB
Statistics
- Stars: 19
- Watchers: 3
- Forks: 6
- Open Issues: 1
- Releases: 1
Topics
Metadata Files
README.rst
Academic Tracker
================
.. image:: https://img.shields.io/pypi/v/academic_tracker.svg
:target: https://pypi.org/project/academic_tracker
:alt: Current library version
.. image:: https://img.shields.io/pypi/pyversions/academic_tracker.svg
:target: https://pypi.org/project/academic_tracker
:alt: Supported Python versions
..
.. image:: https://github.com/MoseleyBioinformaticsLab/academic_tracker/actions/workflows/build.yml/badge.svg
:target: https://github.com/MoseleyBioinformaticsLab/academic_tracker/actions/workflows/build.yml
:alt: Build status
.. image:: https://codecov.io/gh/MoseleyBioinformaticsLab/academic_tracker/branch/main/graphs/badge.svg?branch=main
:target: https://codecov.io/gh/MoseleyBioinformaticsLab/academic_tracker
:alt: Code coverage information
.. image:: https://img.shields.io/badge/DOI-10.1371%2Fjournal.pone.0277834-blue.svg
:target: https://doi.org/10.1371/journal.pone.0277834
:alt: Citation link
.. image:: https://img.shields.io/github/stars/MoseleyBioinformaticsLab/academic_tracker.svg?style=social&label=Star
:target: https://github.com/MoseleyBioinformaticsLab/academic_tracker
:alt: GitHub project
|
Academic Tracker was created to automate the process of making sure that federally
funded publications get listed on PubMed and that the grant funding source for
them is cited.
Academic Tracker is a command line tool to search PubMed, ORCID, Google Scholar,
and Crossref for publications. The program can either be given a list of authors
to look for publications for, or references/citations to publications themselves.
The program will then will look for publications on the aforementioned sources
and return what relevant information is available from those sources.
The primary use case is to give the program a list of authors to find publications
for. From this list of publications it can then be determined which ones need
further action to be in compliance.
A secondary use case for finding author's publications is to create a report of
the collaborators they have worked with, and can be done by specifying the creation
of that report in the configuration file. Details on reports are in the `documentation `__.
The other primary use case is to give the program a list of publication references
to find information for.
Links
~~~~~
* Academic Tracker @ GitHub_
* Academic Tracker @ PyPI_
* Documentation @ Pages_
Installation
~~~~~~~~~~~~
The Academic Tracker package runs under Python 3.8+. Use pip_ to install.
Starting with Python 3.4, pip_ is included by default. Be sure to use the latest
version of pip as older versions are known to have issues grabbing all dependencies.
Academic Tracker relies on sendmail to send emails, so if you need to use that
feature be sure sendmail is installed and in PATH.
Install on Linux, Mac OS X
--------------------------
.. code:: bash
python3 -m pip install academic-tracker
Install on Windows
------------------
.. code:: bash
py -3 -m pip install academic-tracker
Upgrade on Linux, Mac OS X
--------------------------
.. code:: bash
python3 -m pip install academic-tracker --upgrade
Upgrade on Windows
------------------
.. code:: bash
py -3 -m pip install academic-tracker --upgrade
Quickstart
~~~~~~~~~~
Academic Tracker has several commands and options. The simplest most common use
case is simply:
.. code:: bash
academic_tracker author_search config_file.json
Example config files can be downloaded from the `example_configs `_
directory of the GitHub_.
Academic Tracker's behavior can be quite complex though, so it is highly encouraged
to read the `guide `_
and `tutorial `_.
Creating The Configuration JSON
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
A configuration JSON file is required to run Academic Tracker, but initially creating
it the first time can be burdensome. Unfortunately, there is no easy solution for
this. It is encouraged to read the configuration JSON section in `jsonschema `_
and use the example there to create it initially. The add_authors command can help
with building the Authors section if you already have a csv file with author
information. A good tool to help track down pesky JSON syntax errors is `here `__.
There are also examples in the `example_configs `__
directory of the GitHub repo. There are also more examples in the supplemental
material of the paper https://doi.org/10.6084/m9.figshare.19412165.
Registering With ORCID
~~~~~~~~~~~~~~~~~~~~~~
In order to have this program search ORCID you must register with ORCID and obtain
a key and secret. Details on how to do that are `here `__.
If you do not want to do that then the --no_ORCID option can be used to skip searching
ORCID, or don't include the ORCID_search section in the config file.
Mac OS Note
~~~~~~~~~~~
When you try to run the program on Mac OS you may get an SSL error.
certificate verify failed: unable to get local issuer certificate
This is due to a change in Mac OS and Python. To fix it go to to your Python
folder in Applications and run the Install Certificates.command shell command
in the /Applications/Python 3.x folder. This should fix the issue.
Email Sending Note
~~~~~~~~~~~~~~~~~~
Academic Tracker uses sendmail to send emails, so any system it is going to be
used on needs to have sendmail installed and the path in PATH. If you try to
send emails without this the program will display a warning. This can be avoided
by using the --test option though. The --test option blocks email sending. Email
sending can also be avoided by leaving the from_email attribute out of the report
sections of the configuration JSON file.
How Authors Are Identified
~~~~~~~~~~~~~~~~~~~~~~~~~~
When searching by authors it is necessary to confirm that the author given to
Academic Tracker matches the author returned in the query. In general this matching
is done by matching the first and last names and at least one affiliation given
for the author in the configuration JSON file. Note that affiliations can change
over time as authors move, so they may need many affiliations to accurately match
them to their publications depending on how far back you want to search in time.
How Publications Are Matched
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
When searching by publications it is necessary to confirm that the publication
in the given reference matches the publication returned in the query. This is done
by either matching the DOIs, PMIDs, or the title and at least one author. Titles
are fuzzy matched using fuzzywuzzy which is why at least one author must also be
matched. Author's are matched using last name and at least one affiliation.
Troubleshooting Errors
~~~~~~~~~~~~~~~~~~~~~~
If you experience errors when running Academic Tracker the first thing to do is
simply try again. Since Academic Tracker is communicating with multiple web sources
it is not uncommon for a problem to occur with one of these sources. It might also
be a good idea to wait several hours or the next day to try again if there is a communication
issue with a particular source. You can also use the various "--no_Source" options
for whatever source is causing an error. For example, if Crossref keeps having 504
HTTP errors you can run with the --no_Crossref option. If the issue persists across
multiple runs then try upgrading Academic Tracker's dependencies with
"pip install --upgrade dependency_name". The list of dependencies is in the `guide `_.
License
~~~~~~~
This package is distributed under the BSD `license `__.
.. _GitHub: https://github.com/MoseleyBioinformaticsLab/academic_tracker
.. _Pages: https://moseleybioinformaticslab.github.io/academic_tracker/
.. _PyPI: https://pypi.org/project/academic_tracker
.. _pip: https://pip.pypa.io
Owner
- Name: Moseley Bioinformatics and Systems Biology Lab
- Login: MoseleyBioinformaticsLab
- Kind: organization
- Location: University of Kentucky
- Website: https://moseleybioinformaticslab.org/
- Repositories: 24
- Profile: https://github.com/MoseleyBioinformaticsLab
We develop and maintain a set of high-quality, well-documented, open source code repositories for general scientific re-use.
Citation (CITATION.cff)
cff-version: 1.0.0
message: "If you use this software, please cite it as below."
authors:
- family-names: "Thompson"
given-names: "Travis"
orcid: "https://orcid.org/0000-0002-8198-1327"
- family-names: "Powell"
given-names: "Christian"
orcid: "https://orcid.org/0000-0002-4242-080X"
- family-names: "Moseley"
given-names: "Hunter"
orcid: "https://orcid.org/0000-0003-3995-5368"
title: "academic_tracker"
version: 1.0.3
date-released: 2022-03-28
url: "https://github.com/MoseleyBioinformaticsLab/academic_tracker"
preferred-citation:
type: article
authors:
- family-names: "Thompson"
given-names: "Travis"
orcid: "https://orcid.org/0000-0002-8198-1327"
- family-names: "Powell"
given-names: "Christian"
orcid: "https://orcid.org/0000-0002-4242-080X"
- family-names: "Moseley"
given-names: "Hunter"
orcid: "https://orcid.org/0000-0003-3995-5368"
doi: "10.1371/journal.pone.0277834"
journal: "Plos one"
month: 11
title: "Academic Tracker: Software for tracking and reporting publications associated with authors and grants"
number: 11
volume: 17
year: 2022
GitHub Events
Total
- Watch event: 5
- Fork event: 1
Last Year
- Watch event: 5
- Fork event: 1
Committers
Last synced: almost 3 years ago
All Time
- Total Commits: 87
- Total Committers: 3
- Avg Commits per committer: 29.0
- Development Distribution Score (DDS): 0.046
Top Committers
| Name | Commits | |
|---|---|---|
| Travis Thompson | p****2@u****u | 83 |
| Christian Powell | c****4@g****u | 3 |
| Christian D. Powell | c****l@g****m | 1 |
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 4
- Total pull requests: 3
- Average time to close issues: 6 days
- Average time to close pull requests: about 11 hours
- Total issue authors: 3
- Total pull request authors: 2
- Average comments per issue: 4.75
- Average comments per pull request: 0.0
- Merged pull requests: 3
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 1
- Average time to close issues: N/A
- Average time to close pull requests: about 17 hours
- Issue authors: 0
- Pull request authors: 1
- Average comments per issue: 0
- Average comments per pull request: 0.0
- Merged pull requests: 1
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- yhan818 (2)
- ptth222 (1)
- ianzur (1)
Pull Request Authors
- ptth222 (2)
- ianzur (2)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- pypi 148 last-month
- Total dependent packages: 0
- Total dependent repositories: 1
- Total versions: 9
- Total maintainers: 2
pypi.org: academic-tracker
Find publications on PubMed, Crossref, ORCID, and Google Scholar for given authors or references.
- Homepage: https://github.com/MoseleyBioinformaticsLab/academic_tracker
- Documentation: https://moseleybioinformaticslab.github.io/academic_tracker/
- License: The Clear BSD License with Extra Clause Copyright (c) 2022, Travis Thompson, Hunter N.B. Moseley All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * All advertising materials mentioning features or use of this software must display the following acknowledgement: This product includes software developed by the copyright holder. * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. * If the source code is used in a published work, then proper citation of the source code must be included with the published work. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
Latest release: 2.0.1
published over 1 year ago
Rankings
Maintainers (2)
Dependencies
- beautifulsoup4 >=4.9.3
- deepdiff >=5.7.0
- docopt >=0.6.2
- fuzzywuzzy >=0.18.0
- habanero >=1.0.0
- jsonschema >=4.4.0
- openpyxl >=2.6.2
- orcid >=1.0.3
- pandas >=0.24.2
- pymed >=0.8.9
- python-docx >=0.8.11
- requests >=2.21.0
- scholarly >=1.4.5
- sphinx_rtd_theme *
- sphinxcontrib-napoleon *
- beautifulsoup4 >=4.9.3
- deepdiff >=5.7.0
- docopt >=0.6.2
- fuzzywuzzy >=0.18.0
- habanero >=1.0.0
- jsonschema >=4.4.0
- openpyxl >=2.6.2
- orcid >=1.0.3
- pandas >=0.24.2
- pymed >=0.8.9
- python-docx >=0.8.11
- requests >=2.21.0
- scholarly >=1.4.5
- actions/checkout v2 composite
- actions/setup-python v2 composite
- actions/checkout v2 composite
- actions/upload-artifact v1 composite
- ad-m/github-push-action master composite
- ammaraskar/sphinx-action master composite
- actions/checkout v2 composite
- actions/setup-python v2 composite
- codecov/codecov-action v2 composite