-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' of github.com:usegalaxy-au/galaxy-media-site into dev
- Loading branch information
Showing
12 changed files
with
298 additions
and
45 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
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
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,46 @@ | ||
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 HOLDER 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. | ||
|
||
1. General. The DIA-NN software is licensed to you for use only under the terms of this License, | ||
and all rights not expressly granted to you are reserved. The rights granted herein are limited to Vadim Demichev’s intellectual | ||
property rights in the DIA-NN software and do not include any other patents or intellectual property rights. | ||
|
||
2. Permitted License Uses and Restrictions. This License allows you to install and use the DIA-NN software. | ||
You may make one copy of the DIA-NN Software in machine-readable form for backup purposes only; | ||
provided that the backup copy must include all copyright or other proprietary notices contained on the original. | ||
Except as and only to the extent expressly permitted in this License or by applicable law, you may not copy, decompile, | ||
reverse engineer, disassemble, attempt to derive the source code of, modify, or create derivative works of the DIA-NN software or any part thereof. | ||
|
||
3. Transfer. You may not rent, lease, lend or sublicense the DIA-NN software. You may, however, make a one-time permanent transfer | ||
of all of your license rights to the DIA-NN software to another party, provided that: (a) the transfer must include all of the DIA-NN software, | ||
including all its component parts, original media, printed materials and this License; (b) you do not retain any copies of the DIA-NN software, | ||
full or partial, including copies stored on a computer or other storage device; and (c) the party receiving the DIA-NN software reads | ||
and agrees to accept the terms and conditions of this License. | ||
|
||
4. Attribution. If you share, distribute or publish any materials that were produced using the DIA-NN software ("Derived Materials"), you must indicate | ||
within these Derived Materials that they were produced using the DIA-NN software. You may satisfy this condition in any reasonable manner | ||
based on the medium, means, and context in which you share the Derived Materials. For example, the required attribution can be expressed by including | ||
one of the statements "Processed using DIA-NN", "Generated using DIA-NN" or "Produced using DIA-NN" in the Derived Materials. | ||
|
||
5. All third-party software included in this DIA-NN software distribution retains its original license (see below). | ||
For the inclusion in this DIA-NN software distribution, the source code of MSToolkit and MiniDNN was modified. | ||
|
||
MiniDNN | ||
- folder within this distribution: /MiniDNN | ||
- URL: https://github.com/yixuan/MiniDNN | ||
- License information: /MiniDNN/LICENSE.txt | ||
|
||
MSToolkit | ||
- folder within this distribution: /mstoolkit | ||
- URL: https://github.com/mhoopmann/mstoolkit | ||
- License information: /mstoolkit/LICENSE.txt | ||
|
||
Eigen | ||
- folder within this distribution: /eigen | ||
- URL: http://eigen.tuxfamily.org/ | ||
- License information: eigen/COPYING.README |
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
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
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,116 @@ | ||
{% extends 'home/header.html' %} | ||
|
||
{% load static %} | ||
|
||
|
||
{% block head %} | ||
<link rel="stylesheet" href="{% static 'home/css/requests.css' %}"> | ||
<link rel="stylesheet" href="{% static 'home/css/request-form.css' %}"> | ||
{% endblock %} | ||
|
||
|
||
{% block content %} | ||
<main class="container mt-4"> | ||
|
||
<div class="mb-10"> | ||
<h2> Galaxy Australia DIA-NN Access Request </h2> | ||
<small> | ||
<a href="/request/access"> | ||
<span class="material-icons">arrow_back</span> | ||
Back to tool access menu | ||
</a> | ||
</small> | ||
</div> | ||
|
||
<p class="lead"> | ||
DIA-NN is a universal software for data-independent acquisition (DIA) proteomics data processing by the Demichev, Ralser and Lilley labs. | ||
</p> | ||
|
||
<p> | ||
DIA-NN (v1.8.1) is available on Galaxy Australia for Australian researchers undertaking publicly funded research (i.e. using DIA-NN for academic research purposes). | ||
</p> | ||
|
||
<p> | ||
Please apply for access, using your institutional email. The following sign up form is to confirm eligibility for access to DIA-NN on Galaxy Australia. | ||
</p> | ||
|
||
<form class="mt-10" method="post"> | ||
|
||
{% csrf_token %} | ||
|
||
{{ form.non_field_errors }} | ||
|
||
{% include 'home/requests/access/snippets/personal-details-fields.html' %} | ||
|
||
<hr> | ||
|
||
<div class="mb-10"> | ||
<h3 class="mb-3">Your research (optional)</h3> | ||
<div class="form-group mb-3"> | ||
<label class="form-label" for="researchDescription">Please provide a brief description of your research</label> | ||
<input | ||
class="form-control" | ||
id="researchDescription" | ||
name="research_description" | ||
type="text" | ||
value="{{ form.research_description.value|default_if_none:'' }}" | ||
/> | ||
</div> | ||
<div class="form-group mb-3"> | ||
<label class="form-label" for="researchTopics">Which broad topics best describe your research?</label> | ||
<input | ||
class="form-control" | ||
id="researchTopics" | ||
name="research_topics" | ||
type="text" | ||
value="{{ form.research_topics.value|default_if_none:'' }}" | ||
/> | ||
</div> | ||
</div> | ||
|
||
<hr> | ||
|
||
<div class="row mb-10"> | ||
<div class="col-sm-12"> | ||
<h3 class="mb-3">License acknowledgement statement</h3> | ||
<p> | ||
The {{ form.RESOURCE_NAME }} DIA-NN license is required to be | ||
acknowledged prior to access. | ||
</p> | ||
|
||
{% include 'home/requests/access/snippets/agree-terms-modal.html' %} | ||
|
||
</div> | ||
</div> | ||
|
||
<hr> | ||
|
||
<div class="container mb-10"> | ||
{% include 'home/requests/access/snippets/privacy-collection-notice.html' %} | ||
</div> | ||
|
||
<div class="row mb-10"> | ||
<div class="col text-center"> | ||
<button class='ga-btn' type="submit"> Submit </button> | ||
</div> | ||
</div> | ||
</form> | ||
|
||
</main> | ||
{% endblock %} | ||
|
||
|
||
{% block script %} | ||
<script src="{% static 'home/js/forms.js' %}"></script> | ||
<script> | ||
function showAcceptLicense(acceptLicenseBtn) { | ||
console.log("Button:") | ||
console.log(acceptLicenseBtn); | ||
$(acceptLicenseBtn).siblings('.form-check').show(); | ||
} | ||
</script> | ||
{% endblock %} | ||
|
||
|
||
{% block onload %} | ||
{% endblock %} |
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
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
12 changes: 12 additions & 0 deletions
12
webapp/home/templates/home/requests/access/snippets/privacy-collection-notice.html
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,12 @@ | ||
<h3>Data Privacy Notice</h3> | ||
<p> | ||
By completing this form you agree that your | ||
responses will be provided to the Australian BioCommons and Galaxy | ||
Australia and will be used solely for the purposes of determining | ||
suitability for access to the Australian {{ form.RESOURCE_NAME }} Service. Your | ||
responses will be protected against unauthorised access and use; providing | ||
your name is required to enable any follow ups. For more information, | ||
please see the | ||
<a href="https://www.biocommons.org.au/privacy/"> | ||
BioCommons Privacy Statement</a>. | ||
</p> |
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
Oops, something went wrong.