Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add goverment shutdown notice #38

Merged
merged 3 commits into from
Feb 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 16 additions & 8 deletions dockereve-master/eve-app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,22 @@ def check_auth(self, token, allowed_roles, resource, method):
'title': 'MRIQC Web API',
'version': 'v1',
'description': """\
<a href="http://mriqc.org">MRIQC</a> is an open-source tool that extracts
no-reference image quality metrics from structural and
functional MRI data developed by the <a href="http://poldracklab.stanford.edu">
Poldrack Lab</a> at <a href="http://www.stanford.edu">Stanford University</a>.
This website provides an api to a crowdsourced repository of MRI quality
metrics contributed by users of MRIQC and hosted by
the <a href="http://cmn.nimh.nih.gov">Data Science and Sharing Team</a>
at the <a href="http://nimh.nih.gov">National Institute of Mental Health</a>.""",
<p>####################################################<br />
Because of a lapse in government funding, the information on this website
may not be up to date, transactions submitted via the website may not be
processed, and the agency may not be able to respond to inquiries until
appropriations are enacted.<br />
The NIH Clinical Center (the research hospital of NIH) is open. For more details
about its operating status, please visit cc.nih.gov.<br />
####################################################<br />
<a href="http://mriqc.org">MRIQC</a> is an open-source tool that extracts
no-reference image quality metrics from structural and
functional MRI data developed by the <a href="http://poldracklab.stanford.edu">
Poldrack Lab</a> at <a href="http://www.stanford.edu">Stanford University</a>.
This website provides an API to a crowdsourced repository of MRI quality
metrics contributed by users of MRIQC and hosted by
the <a href="http://cmn.nimh.nih.gov">Data Science and Sharing Team</a>
at the <a href="http://nimh.nih.gov">National Institute of Mental Health</a>.</p>""",
}

if os.environ.get('SWAGGER_HOST', None):
Expand Down