-
Notifications
You must be signed in to change notification settings - Fork 926
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'galaxyproject:main' into DASH-1256
- Loading branch information
Showing
208 changed files
with
4,420 additions
and
867 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
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
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 |
---|---|---|
|
@@ -319,6 +319,12 @@ cfusterbarcelo: | |
orcid: 0000-0002-4784-6957 | ||
bio: Post-doctoral researcher at UC3M | ||
|
||
Camila-goclowski: | ||
name: Camila Goclowski | ||
joined: 2023-01 | ||
email: [email protected] | ||
linkedin: camila-goclowski | ||
|
||
charitylaw: | ||
name: Charity Law | ||
joined: 2018-09 | ||
|
@@ -908,6 +914,11 @@ kxk302: | |
email: [email protected] | ||
joined: 2021-02 | ||
|
||
kysrpex: | ||
name: José Manuel Domínguez | ||
joined: 2023-10 | ||
elixir_node: de | ||
|
||
Lain-inrae: | ||
name: Lain Pavot | ||
email: [email protected] | ||
|
@@ -920,6 +931,11 @@ lamouresparus: | |
twitter: lamouresparus | ||
joined: 2021-10 | ||
|
||
Laura190: | ||
name: Laura Cooper | ||
email: [email protected] | ||
joined: 2023-08 | ||
|
||
lecorguille: | ||
name: Gildas Le Corguillé | ||
joined: 2017-09 | ||
|
@@ -1510,7 +1526,7 @@ stain: | |
elixir_node: uk | ||
location: | ||
country: UK | ||
lat: 53.46724379071192 | ||
lat: 53.46724379071192 | ||
lon: -2.233631283105614 | ||
fediverse: https://scholar.social/@soilandreyes | ||
fediverse_flavor: mastodon | ||
|
@@ -1854,7 +1870,7 @@ nhgri-anvil: | |
url: https://www.genome.gov/Funded-Programs-Projects/Computational-Genomics-and-Data-Science-Program/Genomic-Analysis-Visualization-Informatics-Lab-space-AnVIL | ||
funder: true | ||
funding_id: U24HG010263 | ||
|
||
ai4life: | ||
name: AI4Life | ||
github: false | ||
|
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 |
---|---|---|
@@ -1,24 +1,59 @@ | ||
<!-- | ||
<script async defer data-domain="training.galaxyproject.org" src="https://plausible.galaxyproject.eu/js/plausible.js"></script> | ||
--> | ||
<!-- We let users opt-out, so if they've opted in, we need to append the plausible script to the body --> | ||
|
||
<script> | ||
var scriptElement = document.createElement("script"); | ||
scriptElement.async = true; | ||
scriptElement.defer = true; | ||
scriptElement.setAttribute("data-domain", "training.galaxyproject.org"); | ||
scriptElement.src = "https://plausible.galaxyproject.eu/js/plausible.js"; | ||
|
||
// Appending the script element to the body | ||
if(localStorage.getItem('plausible-opt-out') !== 'opt-out' && navigator.doNotTrack !== "1") { | ||
console.log("Plausible: opt-in"); | ||
// Wait for the document to be available | ||
document.addEventListener("DOMContentLoaded", function(event) { | ||
document.body.appendChild(scriptElement); | ||
}); | ||
} | ||
</script> | ||
|
||
<!-- JavaScript Error Monitoring, and performance tracking. --> | ||
<!-- | ||
<script | ||
src="https://browser.sentry-cdn.com/7.52.1/bundle.tracing.min.js" | ||
integrity="sha384-muuFXKS3752PNA4rPm9Uq6BLvOfV4CXyr9MHDBPvozOJJUWLKkogEFWOIRoVps43" | ||
crossorigin="anonymous" | ||
></script> | ||
--> | ||
<script type="text/javascript"> | ||
Sentry.init({ | ||
dsn: "https://[email protected]/10", | ||
release: "galaxy-training-network@{{ site.git_revision }}", | ||
integrations: [new Sentry.BrowserTracing(), new Sentry.Replay()], | ||
sampleRate: 0.1, | ||
tracesSampleRate: 0.1, | ||
// Capture Replay for no sessions by default | ||
replaysSessionSampleRate: 0.01, | ||
// plus for 1% of sessions with an error | ||
replaysOnErrorSampleRate: 0.01, | ||
// PII OFF | ||
sendDefaultPii: false, // Off by default but just in case. | ||
environment: "{{ jekyll.environment }}", | ||
}); | ||
var scriptElement = document.createElement("script"); | ||
scriptElement.src = "https://browser.sentry-cdn.com/7.52.1/bundle.tracing.min.js"; | ||
scriptElement.integrity = "sha384-muuFXKS3752PNA4rPm9Uq6BLvOfV4CXyr9MHDBPvozOJJUWLKkogEFWOIRoVps43"; | ||
scriptElement.crossOrigin = "anonymous"; | ||
|
||
if(localStorage.getItem('sentry-opt-out') !== 'opt-out' && navigator.doNotTrack !== "1") { | ||
console.log("Sentry: opt-in"); | ||
// Appending the script element to the body | ||
document.addEventListener("DOMContentLoaded", function(event) { | ||
document.body.appendChild(scriptElement); | ||
}); | ||
|
||
Sentry.init({ | ||
dsn: "https://[email protected]/10", | ||
release: "galaxy-training-network@{{ site.git_revision }}", | ||
integrations: [new Sentry.BrowserTracing(), new Sentry.Replay()], | ||
sampleRate: 0.1, | ||
tracesSampleRate: 0.1, | ||
// Capture Replay for no sessions by default | ||
replaysSessionSampleRate: 0.01, | ||
// plus for 1% of sessions with an error | ||
replaysOnErrorSampleRate: 0.01, | ||
// PII OFF | ||
sendDefaultPii: false, // Off by default but just in case. | ||
environment: "{{ jekyll.environment }}", | ||
}); | ||
} | ||
</script> |
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.