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

Annotate all existing WFs with edam topics and operations #639

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

wm75
Copy link
Contributor

@wm75 wm75 commented Dec 17, 2024

work in progress, but seems to play out nicely overall.

Will remove comments breaking json format when done, but until then they help to understand what's behind the edam IDs.

@wm75 wm75 added the WIP label Dec 17, 2024
@wm75
Copy link
Contributor Author

wm75 commented Dec 17, 2024

Strcitly speaking, iuc has one more level of nesting under an edam_ontology tag. Not sure if it's worthwhile replicating this here. (misremembered this)

Part of the ongoing work is to include a guide for contributors on which topics and operations to pick.

Longer term it would be great to support workflow edams in Galaxy (don't lose them, make them searchable, add them to best practices).

@@ -15,6 +15,8 @@
"format-version": "0.1",
"license": "MIT",
"name": "dada2 amplicon analysis pipeline - for paired end data",
"edam_topics": ["topic_3837"], # Metagenomic sequencing
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"edam_topics": ["topic_3837"], # Metagenomic sequencing
"edam_topics": ["topic_3837", "topic_4038"], # Metagenomic sequencing, Metabarcoding

@@ -17,6 +17,8 @@
"license": "MIT",
"release": "0.3",
"name": "QIIME2 Ia: multiplexed data (single-end)",
"edam_topics": ["topic_3168", "topic_3301"], # Sequencing, Microbiology
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"edam_topics": ["topic_3168", "topic_3301"], # Sequencing, Microbiology
"edam_topics": ["topic_3168", "topic_3301", "topic_4038"], # Sequencing, Microbiology, Metabarcoding

@@ -17,6 +17,8 @@
"license": "MIT",
"release": "0.3",
"name": "QIIME2 Ib: multiplexed data (paired-end)",
"edam_topics": ["topic_3168", "topic_3301"], # Sequencing, Microbiology
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"edam_topics": ["topic_3168", "topic_3301"], # Sequencing, Microbiology
"edam_topics": ["topic_3168", "topic_3301", "topic_4038"], # Sequencing, Microbiology, Metabarcoding

@@ -17,6 +17,8 @@
"license": "MIT",
"release": "0.3",
"name": "QIIME2 Ic: Demultiplexed data (single-end)",
"edam_topics": ["topic_3168", "topic_3301"], # Sequencing, Microbiology
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"edam_topics": ["topic_3168", "topic_3301"], # Sequencing, Microbiology
"edam_topics": ["topic_3168", "topic_3301", "topic_4038"], # Sequencing, Microbiology, Metabarcoding

@@ -17,6 +17,8 @@
"release": "0.3",
"license": "MIT",
"name": "QIIME2 Id: Demultiplexed data (paired-end)",
"edam_topics": ["topic_3168", "topic_3301"], # Sequencing, Microbiology
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"edam_topics": ["topic_3168", "topic_3301"], # Sequencing, Microbiology
"edam_topics": ["topic_3168", "topic_3301", "topic_4038"], # Sequencing, Microbiology, Metabarcoding

@@ -18,6 +18,8 @@
"release": "0.3",
"license": "MIT",
"name": "QIIME2 IIa: Denoising (sequence quality control) and feature table creation (single-end)",
"edam_topics": ["topic_3168", "topic_3301"], # Sequencing, Microbiology
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"edam_topics": ["topic_3168", "topic_3301"], # Sequencing, Microbiology
"edam_topics": ["topic_3168", "topic_3301", "topic_4038"], # Sequencing, Microbiology, Metabarcoding

@@ -18,6 +18,8 @@
"release": "0.3",
"license": "MIT",
"name": "QIIME2 IIb: Denoising (sequence quality control) and feature table creation (paired-end)",
"edam_topics": ["topic_3168", "topic_3301"], # Sequencing, Microbiology
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"edam_topics": ["topic_3168", "topic_3301"], # Sequencing, Microbiology
"edam_topics": ["topic_3168", "topic_3301", "topic_4038"], # Sequencing, Microbiology, Metabarcoding

@@ -17,6 +17,8 @@
"format-version": "0.1",
"license": "MIT",
"name": "QIIME2-III-V-Phylogeny-Rarefaction-Taxonomic-Analysis",
"edam_topics": ["topic_3168", "topic_3837"], # Microbiology, Metagenomic sequencing
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"edam_topics": ["topic_3168", "topic_3837"], # Microbiology, Metagenomic sequencing
"edam_topics": ["topic_3168", "topic_3837", "topic_4038"], # Microbiology, Metagenomic sequencing, Metabarcoding

@@ -121,6 +121,8 @@
"format-version": "0.1",
"license": "MIT",
"name": "QIIME2 VI: Diversity metrics and estimations",
"edam_topics": ["topic_3168", "topic_3837"], # Microbiology, Metagenomic sequencing
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"edam_topics": ["topic_3168", "topic_3837"], # Microbiology, Metagenomic sequencing
"edam_topics": ["topic_3168", "topic_3837", "topic_4038"], # Microbiology, Metagenomic sequencing, Metabarcoding

@wm75
Copy link
Contributor Author

wm75 commented Dec 18, 2024

@bebatut thanks! I was very much hoping that somebody'd review my dada2/qiime2 annotations :-)
The problem with metabarcoding specifically is that it's not currently part of a stable EDAM release, but seems to be available in "latest (unstable)" only.

@bebatut
Copy link
Member

bebatut commented Dec 18, 2024

@bebatut thanks! I was very much hoping that somebody'd review my dada2/qiime2 annotations :-) The problem with metabarcoding specifically is that it's not currently part of a stable EDAM release, but seems to be available in "latest (unstable)" only.

I thought it was released. I found it there: https://www.ebi.ac.uk/ols4/ontologies/edam/classes/http%253A%252F%252Fedamontology.org%252Ftopic_4038?lang=en

@wm75
Copy link
Contributor Author

wm75 commented Dec 18, 2024

@bebatut thanks! I was very much hoping that somebody'd review my dada2/qiime2 annotations :-) The problem with metabarcoding specifically is that it's not currently part of a stable EDAM release, but seems to be available in "latest (unstable)" only.

I thought it was released. I found it there: https://www.ebi.ac.uk/ols4/ontologies/edam/classes/http%253A%252F%252Fedamontology.org%252Ftopic_4038?lang=en

bit weird, I'm using https://edamontology.github.io/edam-browser/ and it says that 1.25 is the latest release.
The page linked in edamontology/edamontology#856 (comment) says that metabarcoding is added with 1.26

@wm75
Copy link
Contributor Author

wm75 commented Dec 18, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants