-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #108 from rmarkello/zenodo
[MNT] Adds framework for Zenodo integration
- Loading branch information
Showing
3 changed files
with
87 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"title": "abagen: A toolbox for the Allen Brain Atlas genetics data", | ||
"description": "abagen is a Python toolbox that provides reproducible workflows for fetching and processing the Allen Human Brain Atlas microarray expression data for analysis.", | ||
"creators": [ | ||
{ | ||
"name": "Markello, Ross", | ||
"affiliation": "Montreal Neurological Institute, McGill University", | ||
"orcid": "0000-0003-1057-1336" | ||
}, | ||
{ | ||
"name": "Shafiei, Golia", | ||
"affiliation": "Montreal Neurological Institute, McGill University", | ||
"orcid": "0000-0002-2036-5571" | ||
}, | ||
{ | ||
"name": "Ying-Qiu Zheng", | ||
"affiliation": "Montreal Neurological Institute, McGill University", | ||
"orcid": "0000-0003-1236-0700" | ||
} | ||
], | ||
"keywords": [ | ||
"neuroimaging", | ||
"genetics", | ||
"allen institute" | ||
], | ||
"license": "BSD-3-Clause", | ||
"upload_type": "software" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
.. _citation: | ||
|
||
------------- | ||
Citing abagen | ||
------------- | ||
|
||
We're thrilled you've found ``abagen`` useful in your work! To make citing | ||
it as easy as possible we have created a `DOI`_ with `Zenodo`_. Since much of | ||
the current codebase was inspired by the workflow laid out in Arnatkevičiūte et | ||
al., 2019, and it all uses data released with Hawrylycz et al., 2012, we ask | ||
that you please cite those papers as well: | ||
|
||
.. raw:: html | ||
|
||
<script language="javascript"> | ||
var version = 'latest'; | ||
function fillCitation(){ | ||
$('#abagen_version').text(version); | ||
function cb(err, zenodoID) { | ||
getCitation(zenodoID, 'vancouver-brackets-no-et-al', function(err, citation) { | ||
$('#abagen_citation').text(citation); | ||
}); | ||
getDOI(zenodoID, function(err, DOI) { | ||
$('#abagen_doi_url').text('https://doi.org/' + DOI); | ||
$('#abagen_doi_url').attr('href', 'https://doi.org/' + DOI); | ||
}); | ||
} | ||
if(version == 'latest') { | ||
getLatestIDFromconceptID("", cb); | ||
} else { | ||
getZenodoIDFromTag("", version, cb); | ||
} | ||
} | ||
</script> | ||
|
||
<p> | ||
1. <span id="abagen_citation">abagen</span> Available from: <a id="abagen_doi_url" href="https://doi.org/xx.xxxx/zenodo.xxxxxx">xx.xxxx/zenodo.xxxxxx</a>. | ||
<img src onerror='fillCitation()' alt="" /> | ||
</p> | ||
<p> | ||
2. Arnatkevic̆iūtė, A., Fulcher, B. D., & Fornito, A. (2019). A practical guide to linking brain-wide gene expression and neuroimaging data. NeuroImage, 189, 353-367. doi:10.1016/j.neuroimage.2019.01.011 | ||
</p> | ||
<p> | ||
3. Hawrylycz, M. J., Lein, E. S., Guillozet-Bongaarts, A. L., Shen, E. H., Ng, L., Miller, J. A., … Jones, A. R. (2012). An anatomically comprehensive atlas of the adult human brain transcriptome. Nature, 489(7416), 391–399. doi:10.1038/nature11405 | ||
</p> | ||
|
||
.. _DOI: https://en.wikipedia.org/wiki/Digital_object_identifier | ||
.. _Zenodo: https://zenodo.org |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters